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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 250px;
}

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

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

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 11px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 12px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

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

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
}

.hero-intro {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
}

.hero-image-container {
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #2563eb;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #2563eb;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.value-proposition {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
}

.vp-left {
    flex: 1;
}

.vp-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.vp-left p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.vp-right {
    flex: 1;
}

.vp-image-wrapper {
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-overview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.services-header p {
    font-size: 18px;
    color: #6b7280;
}

.service-item-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #111827;
}

.service-content-left p,
.service-content-right p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.service-image-right,
.service-image-left {
    flex: 1;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

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

.btn-select-service {
    padding: 12px 28px;
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #374151;
    transform: translateY(-1px);
}

.form-section-split {
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    margin: 100px auto;
    padding: 60px 40px;
    gap: 80px;
    background: #f9fafb;
    border-radius: 12px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
}

.form-left p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

.main-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 0 20px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px 40px;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}

.about-hero-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #111827;
}

.about-text p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

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

.our-approach {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.approach-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.approach-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-block {
    flex: 1;
    min-width: 280px;
}

.approach-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.approach-block p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.experience-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 100px auto;
    padding: 60px 40px;
    gap: 80px;
    background: #f9fafb;
    border-radius: 12px;
}

.exp-left {
    flex: 1;
}

.exp-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.exp-left p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.exp-right {
    flex: 1;
}

.stats-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
}

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.values-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.value-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.services-header-section {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.services-header-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #111827;
}

.services-intro {
    font-size: 18px;
    color: #6b7280;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.service-detail-split {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111827;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #111827;
}

.service-detail-content p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 16px 0 24px 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.service-detail-image {
    flex: 1;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cta-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f9fafb;
    border-radius: 12px;
}

.services-cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #111827;
}

.services-cta-section p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.contact-hero {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #111827;
}

.contact-hero p {
    font-size: 18px;
    color: #6b7280;
}

.contact-split {
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111827;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111827;
}

.info-block p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.contact-image-container {
    flex: 1;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

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

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #111827;
}

.thanks-message {
    font-size: 18px;
    color: #2563eb;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.legal-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #111827;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #111827;
}

.legal-content p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0 24px 20px;
}

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

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-split,
    .value-proposition,
    .service-item-split,
    .form-section-split,
    .about-hero-split,
    .experience-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-item-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

    .services-header h2,
    .vp-left h2,
    .form-left h2,
    .exp-left h2,
    .values-section h2,
    .services-cta-section h2,
    .contact-info h2,
    .legal-content h1 {
        font-size: 32px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 calc(50% - 20px);
        min-width: 200px;
    }

    .approach-grid,
    .values-split {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .header-container,
    .hero-split,
    .value-proposition,
    .services-overview,
    .form-section-split,
    .footer-content,
    .about-hero-split,
    .our-approach,
    .experience-split,
    .values-section,
    .services-header-section,
    .services-detailed,
    .services-cta-section,
    .contact-hero,
    .contact-split,
    .thanks-section,
    .legal-content,
    .footer-disclaimer,
    .footer-bottom {
        padding: 0 20px;
    }

    .hero-left h1,
    .about-text h1,
    .contact-hero h1,
    .services-header-section h1,
    .thanks-content h1 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}