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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5282;
}

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

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

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

.hero-left p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c5282;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.value-split {
    display: flex;
    align-items: center;
}

.value-image {
    flex: 1;
    overflow: hidden;
}

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

.value-content {
    flex: 1;
    padding: 80px 60px;
}

.value-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 28px;
}

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

.services-intro {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.intro-content {
    flex: 1;
    padding: 0 60px;
}

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

.intro-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.intro-visual {
    flex: 1;
    overflow: hidden;
    height: 400px;
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 32px;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: #2c5282;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-split {
    display: flex;
    background-color: #f7fafc;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.testimonial-content blockquote {
    border-left: 4px solid #2c5282;
    padding-left: 24px;
}

.testimonial-content p {
    font-size: 18px;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-content cite {
    font-size: 16px;
    color: #718096;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

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

.form-section {
    display: flex;
    min-height: 700px;
}

.form-visual {
    flex: 1;
    overflow: hidden;
}

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

.form-container {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

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

.contact-form {
    max-width: 480px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.cta-submit {
    width: 100%;
    background-color: #2c5282;
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: #1e3a5f;
}

.approach-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.approach-content {
    flex: 1;
    padding: 0 60px;
}

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

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5282;
    border: 2px solid #2c5282;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-top: 12px;
}

.cta-secondary:hover {
    background-color: #2c5282;
    color: #fff;
}

.approach-image {
    flex: 1;
    overflow: hidden;
    height: 500px;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

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

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

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

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #fff;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.cookie-accept {
    background-color: #2c5282;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #1e3a5f;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
}

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

.thanks-container .selected-service {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.thanks-container .selected-service strong {
    color: #2c5282;
    font-size: 20px;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .services-intro,
    .testimonial-split,
    .form-section,
    .approach-split {
        flex-direction: column;
    }

    .hero-left,
    .value-content,
    .intro-content,
    .form-container,
    .approach-content {
        padding: 40px 24px;
    }

    .hero-right,
    .value-image,
    .intro-visual,
    .testimonial-image,
    .form-visual,
    .approach-image {
        min-height: 300px;
    }

    .nav-container {
        padding: 16px 24px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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