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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7e;
    --accent-color: #d4a574;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 64px;
}

.hero-text {
    max-width: 560px;
}

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

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

.hero-image {
    flex: 1;
    background-color: #c9d6df;
}

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

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

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.intro-section {
    padding: 96px 32px;
    background-color: var(--bg-white);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-preview {
    padding: 96px 32px;
    background-color: var(--bg-light);
}

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

.section-header-centered {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-centered h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-header-centered p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-split {
    display: flex;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    background-color: #d1d5db;
}

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

.service-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

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

.approach-section {
    padding: 96px 32px;
    background-color: var(--bg-white);
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

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

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

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultation-cta {
    padding: 96px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.consultation-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.consultation-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.form-section {
    padding: 96px 32px;
    background-color: var(--bg-light);
}

.form-intro {
    flex: 1;
}

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

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

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 6px;
}

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

.form-container {
    flex: 1;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 64px 32px 32px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-reject:hover {
    background-color: var(--bg-light);
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 32px;
}

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

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

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

.thanks-service {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.thanks-service strong {
    color: var(--primary-color);
}

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

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 48px 32px;
    }

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

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

    .container-split {
        flex-direction: column;
    }

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

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

.contact-page {
    padding: 96px 32px;
    background-color: var(--bg-light);
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.info-block p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-map {
    flex: 1;
    background-color: #c9d6df;
    border-radius: 8px;
    min-height: 500px;
}

.about-hero {
    padding: 96px 32px;
    background-color: var(--bg-light);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.values-section {
    padding: 96px 32px;
    background-color: var(--bg-white);
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
}

.value-card {
    flex: 1;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.services-page {
    padding: 96px 32px;
    background-color: var(--bg-light);
}

.services-header {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    display: flex;
    gap: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-details {
    flex: 2;
}

.service-details h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-details p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-features {
    margin-top: 24px;
}

.service-features h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.service-features ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
}

.service-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-pricing {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.service-pricing .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.service-pricing .price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    text-align: center;
}

.legal-page {
    padding: 96px 32px;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .about-content {
        flex-direction: column;
    }

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

    .contact-split {
        flex-direction: column;
    }

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