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

:root {
    --primary-color: #2c5f6f;
    --secondary-color: #4a8fa0;
    --accent-color: #88b5c0;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--bg-white);
}

.hero-text {
    flex: 1;
    padding: 100px 50px 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--secondary-color);
}

.intro-asymmetric {
    display: flex;
    padding: 80px 50px;
    gap: 60px;
    background: var(--bg-light);
    align-items: center;
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-visual {
    flex: 0.8;
    background: var(--accent-color);
}

.intro-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.services-preview {
    padding: 100px 50px;
    background: var(--bg-white);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-image-container {
    flex: 0 0 45%;
    background: var(--accent-color);
}

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

.service-details {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: var(--primary-color);
}

.form-section {
    padding: 80px 50px;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.trust-section {
    padding: 80px 50px;
    background: var(--bg-white);
}

.trust-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.trust-points {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.process-visual {
    padding: 80px 50px;
    background: var(--bg-light);
}

.process-visual h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    font-size: 15px;
    color: var(--text-light);
}

.footer-split {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 50px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-column p {
    font-size: 15px;
    color: var(--bg-light);
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 14px;
    color: var(--bg-light);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 2px solid var(--primary-color);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background: var(--primary-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background: var(--secondary-color);
}

.cookie-btn.reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background: var(--border-color);
}

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

    .hero-text {
        padding: 60px 30px;
    }

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

    .hero-image {
        min-height: 400px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .services-grid-split {
        flex-direction: column;
    }

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

    .service-image-container {
        flex: 0 0 250px;
    }

    .trust-points {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-split {
        padding: 15px 20px;
    }

    .nav-right {
        gap: 15px;
        font-size: 14px;
    }

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

    .hero-text p {
        font-size: 16px;
    }

    .services-preview,
    .trust-section,
    .process-visual {
        padding: 60px 20px;
    }
}

.thanks-container {
    display: flex;
    gap: 50px;
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.thanks-content {
    flex: 2;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-details {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.cta-secondary {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
    border: 1px solid var(--border-color);
}

.cta-secondary:hover {
    background: var(--border-color);
}

.thanks-sidebar {
    flex: 1;
}

.sidebar-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.sidebar-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-email {
    font-weight: 600;
    color: var(--text-dark);
}

.sidebar-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: underline;
}

.about-hero {
    background: var(--bg-light);
    padding: 100px 50px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

.story-image {
    flex: 1;
    background: var(--accent-color);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.approach-section {
    padding: 80px 50px;
    background: var(--bg-light);
}

.approach-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.approach-item {
    flex: 1 1 calc(50% - 20px);
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.values-section {
    display: flex;
    padding: 80px 50px;
    gap: 50px;
    align-items: center;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.values-visual {
    flex: 1;
    background: var(--accent-color);
}

.values-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.team-section {
    padding: 80px 50px;
    background: var(--bg-light);
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    background: var(--accent-color);
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-member .role {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 50px;
    text-align: center;
    background: var(--bg-white);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}
