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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba8;
    --accent-color: #d4a574;
    --text-dark: #1f1f1f;
    --text-light: #5a5a5a;
    --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-color: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 77, 122, 0.96);
    color: white;
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-cookie.accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-cookie.accept:hover {
    background-color: #c89964;
}

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.header {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-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: var(--primary-color);
}

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background-color: var(--accent-color);
}

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

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

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: var(--bg-light);
}

.intro-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

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

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

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

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

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

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

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

.service-card {
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 24px;
}

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

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

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

.btn-select {
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.form-left {
    flex: 1;
}

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

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

.form-left img {
    border-radius: 8px;
    background-color: var(--bg-light);
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.trust-image {
    flex: 1;
    background-color: var(--bg-light);
}

.trust-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
}

.disclaimer-section {
    background-color: #fef9f3;
    padding: 60px 40px;
    margin: 80px 0;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 40px 20px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

.footer-column ul a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

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

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

.about-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

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

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

.about-hero-image img {
    width: 100%;
    height: 100%;
}

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

.about-content-split.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 8px;
}

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

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

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
    background-color: var(--bg-light);
    padding: 80px 60px;
}

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

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

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

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
}

.approach-section {
    padding: 80px 40px;
}

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

.approach-card {
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
}

.approach-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

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

.services-hero {
    text-align: center;
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.services-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
}

.cta-section {
    background-color: var(--primary-color);
    padding: 80px 40px;
    text-align: center;
}

.cta-content-center {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-center h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-content-center .cta-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.cta-content-center .cta-primary:hover {
    background-color: #c89964;
}

.contact-hero {
    text-align: center;
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.contact-hero h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

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

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

.email-text {
    font-family: monospace;
    font-size: 17px;
    color: var(--text-dark);
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-map img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
}

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

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

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

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

.thanks-container p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.legal-page {
    padding: 80px 40px;
}

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

.legal-container h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 28px;
    margin-bottom: 12px;
}

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

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-light);
}

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

    .hero-content h1,
    .about-hero-content h1 {
        font-size: 36px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 16px;
    }

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