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

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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

.nav-brand {
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

.hero-offset {
    display: flex;
    min-height: 100vh;
    padding: 120px 60px 80px;
    align-items: center;
    gap: 80px;
}

.hero-content-left {
    flex: 1;
    max-width: 540px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e5e7eb;
}

.info-block-diagonal {
    display: flex;
    padding: 100px 60px;
    gap: 100px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.diagonal-content {
    flex: 1.2;
    padding-left: 80px;
}

.diagonal-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.diagonal-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
}

.diagonal-image {
    flex: 0.8;
}

.diagonal-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e5e7eb;
}

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

.services-grid-offset h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0;
    width: calc(33.333% - 30px);
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #f3f4f6;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #6b7280;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 24px 20px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 28px;
    background: #f3f4f6;
    color: #1a1a1a;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.select-service.selected {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

.form-section-asymmetric {
    padding: 100px 60px;
    background: linear-gradient(120deg, #eff6ff 0%, #ffffff 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto 0 120px;
}

.form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 32px;
}

.selected-service-display {
    background: #eff6ff;
    border: 2px solid #2563eb;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.cta-submit {
    width: 100%;
    padding: 16px 32px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.cta-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.trust-section-split {
    display: flex;
    padding: 120px 60px;
    gap: 80px;
    align-items: center;
    background: #ffffff;
}

.trust-left {
    flex: 1;
}

.trust-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-left p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 16px 0 16px 40px;
    font-size: 17px;
    color: #374151;
    position: relative;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.trust-right {
    flex: 1;
}

.trust-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e5e7eb;
}

.disclaimer-section {
    padding: 60px 60px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    text-align: center;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #e5e7eb;
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    color: #9ca3af;
    font-size: 15px;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 24px 40px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    color: #e5e7eb;
    font-size: 15px;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #10b981;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #059669;
}

.cookie-btn.reject {
    background: #374151;
    color: #e5e7eb;
}

.cookie-btn.reject:hover {
    background: #4b5563;
}

@media (max-width: 1024px) {
    .hero-offset,
    .info-block-diagonal,
    .trust-section-split {
        flex-direction: column;
        padding: 60px 30px;
    }

    .nav-floating {
        flex-direction: column;
        gap: 20px;
        top: 20px;
        padding: 20px 30px;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 500px;
    }

    .form-wrapper {
        margin: 0 auto;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.about-hero {
    padding: 160px 60px 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 0.8;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e5e7eb;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    padding: 100px 60px;
    background: #f9fafb;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    width: calc(50% - 20px);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.team-approach {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e5e7eb;
}

.services-hero {
    padding: 160px 60px 80px;
    background: linear-gradient(120deg, #eff6ff 0%, #ffffff 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-hero p {
    font-size: 20px;
    color: #4a5568;
}

.services-detail-section {
    padding: 80px 60px;
}

.service-detail {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-info {
    flex: 1;
}

.service-detail-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-detail-info p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 12px 0 12px 32px;
    font-size: 16px;
    color: #374151;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e5e7eb;
}

.pricing-info {
    padding: 60px 60px;
    background: #f9fafb;
    text-align: center;
}

.pricing-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.pricing-info p {
    font-size: 17px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.contact-hero {
    padding: 160px 60px 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-hero p {
    font-size: 20px;
    color: #4a5568;
}

.contact-main {
    padding: 100px 60px;
    display: flex;
    gap: 100px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-cta {
    flex: 1;
    background: #eff6ff;
    padding: 50px 40px;
    border-radius: 16px;
    align-self: flex-start;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-cta p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 28px;
    line-height: 1.7;
}

.thanks-section {
    padding: 160px 60px 100px;
    min-height: 80vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #10b981;
    font-weight: 700;
}

.thanks-lead {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-details {
    background: #eff6ff;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-details p {
    font-size: 17px;
    color: #374151;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-next-steps ol {
    padding-left: 24px;
}

.thanks-next-steps li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.6;
}

.legal-page {
    padding: 140px 60px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #374151;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    padding-left: 32px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-offset,
    .info-block-diagonal,
    .trust-section-split {
        flex-direction: column;
        padding: 60px 30px;
    }

    .nav-floating {
        flex-direction: column;
        gap: 20px;
        top: 20px;
        padding: 20px 30px;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 500px;
    }

    .form-wrapper {
        margin: 0 auto;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .about-story,
    .team-approach,
    .service-detail,
    .service-detail.reverse,
    .contact-main {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 36px;
    }

    .diagonal-content h2,
    .trust-left h2 {
        font-size: 32px;
    }

    .services-grid-offset h2 {
        font-size: 34px;
    }

    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .legal-page {
        padding: 120px 30px 60px;
    }

    .legal-page h1 {
        font-size: 34px;
    }
}