* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #3498db;
    color: white;
}

.btn-accept:hover {
    background: #2980b9;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
    color: white;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-image-diagonal {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    background: #f8f9fa;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.services-asymmetric {
    padding: 120px 60px;
    background: #ffffff;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    display: flex;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card-medium {
    flex: 1 1 calc(40% - 15px);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-medium:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card-small {
    flex: 1 1 calc(33.333% - 20px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
    flex: 0 0 45%;
    background: #f0f0f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card-small h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-info p,
.service-card-small p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 20px;
}

.service-card-small .service-price {
    color: white;
    font-size: 26px;
}

.btn-select-service {
    padding: 14px 28px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.service-card-small .btn-select-service {
    background: white;
    color: #667eea;
}

.service-card-small .btn-select-service:hover {
    background: #f0f0f0;
}

.approach-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image-left {
    flex: 0 0 45%;
    background: #e0e0e0;
}

.approach-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-text-right {
    flex: 1;
}

.approach-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.approach-text-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.approach-list {
    margin-top: 32px;
    list-style: none;
}

.approach-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

.form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 10%;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container-offset h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    padding: 16px 32px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 40px;
    background: #2c3e50;
    color: white;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: #ecf0f1;
}

.main-footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    font-style: italic;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #667eea;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-home {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
}

.page-container h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.page-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-container ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 6px;
}

.contact-info-item span {
    font-size: 18px;
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        clip-path: none;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .approach-split {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-medium {
        flex: 1 1 100%;
    }

    .service-card-large {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-block h1 {
        font-size: 32px;
    }

    .services-grid-offset {
        padding: 0 20px;
    }

    .form-container-offset {
        margin: 0 auto;
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
    }
}