* {
    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: #fff;
}

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
}

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

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

.nav-links a:hover {
    color: #2d3748;
}

.hero-split {
    display: flex;
    min-height: 500px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7fafc;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    background: #e2e8f0;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background: #2d3748;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
    cursor: pointer;
}

.cta-primary:hover {
    background: #1a202c;
}

.cta-secondary {
    display: inline-block;
    background: #e2e8f0;
    color: #2d3748;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
    cursor: pointer;
}

.cta-secondary:hover {
    background: #cbd5e0;
}

.intro-reversed {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
}

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

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.intro-text p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.services-preview {
    padding: 80px 20px;
    background: #f7fafc;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-header-centered p {
    font-size: 18px;
    color: #4a5568;
}

.service-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-info p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.select-service {
    background: #2d3748;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
}

.select-service:hover {
    background: #1a202c;
}

.contact-form-section {
    padding: 80px 20px;
    background: #fff;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.form-intro p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 24px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    padding: 12px 16px;
    background: #f7fafc;
    border-left: 3px solid #2d3748;
    color: #2d3748;
}

.form-container {
    flex: 1;
    background: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

.selected-service-display {
    background: #e6ffed;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border: 1px solid #9ae6b4;
    color: #276749;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    background: #2d3748;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    width: 100%;
}

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

.trust-indicators {
    padding: 60px 20px;
    background: #2d3748;
    color: #fff;
}

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

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

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 16px;
    color: #cbd5e0;
}

.main-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

.footer-column a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #2d3748;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #90cdf4;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #48bb78;
    color: #fff;
}

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

.cookie-btn.reject {
    background: #4a5568;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #2d3748;
}

.page-hero {
    background: #f7fafc;
    padding: 60px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.page-hero p {
    font-size: 18px;
    color: #4a5568;
}

.about-story-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.story-text p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.story-visual {
    flex: 1;
    background: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-reversed {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    flex-direction: row-reverse;
}

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

.values-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d3748;
}

.value-item p {
    font-size: 15px;
    color: #4a5568;
}

.team-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-description p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    min-width: 50px;
}

.step-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d3748;
}

.step-text p {
    font-size: 15px;
    color: #4a5568;
}

.approach-visual {
    flex: 1;
    background: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
}

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

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

.service-price-box {
    margin-top: 24px;
    padding: 20px;
    background: #f7fafc;
    border-left: 4px solid #2d3748;
}

.price-label {
    font-size: 14px;
    color: #718096;
    margin-bottom: 4px;
}

.price-value {
    font-size: 28px;
    font-weight: 600;
    color: #2d3748;
}

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

.service-detail-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-reversed {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
    flex-direction: row-reverse;
}

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

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

.service-detail-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detail-text p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.cta-services {
    padding: 60px 20px;
    background: #2d3748;
    text-align: center;
}

.cta-services-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-services-content h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 16px;
}

.cta-services-content p {
    font-size: 18px;
    color: #cbd5e0;
    margin-bottom: 30px;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-label {
    font-size: 14px;
    color: #718096;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.6;
}

.contact-email {
    color: #4a5568;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: #f7fafc;
    border-left: 3px solid #2d3748;
}

.contact-note p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-visual-block {
    flex: 1;
    background: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual-block img {
    width: 100%;
    height: 300px;
    display: block;
}

.location-text {
    padding: 30px;
}

.location-text h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.location-text p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-details-extra {
    padding: 80px 20px;
    background: #f7fafc;
}

.details-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.detail-box {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.detail-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
}

.detail-box p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-hero {
    padding: 80px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-content > p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-info {
    background: #e6ffed;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid #9ae6b4;
}

.thanks-info p {
    color: #276749;
    font-size: 16px;
}

.thanks-next {
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #2d3748;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #2d3748;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.next-step p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.legal-page {
    padding: 60px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

.legal-container h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 30px;
}

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

.legal-container a {
    color: #2d3748;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1a202c;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-reversed,
    .form-split,
    .about-story-split,
    .values-reversed,
    .approach-split,
    .service-detail-split,
    .service-detail-reversed,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .form-intro {
        padding: 40px 30px;
    }

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

    .trust-grid {
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}
