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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb3;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

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

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

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

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

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

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

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

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

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #d4e3ec;
}

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

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

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

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

.section-split {
    display: flex;
    min-height: 70vh;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 100px;
    background-color: var(--bg-white);
}

.split-content.alt-bg {
    background-color: var(--bg-light);
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #d4e3ec;
}

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

.section-title {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 100px;
    background-color: var(--bg-light);
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.service-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.form-section {
    padding: 100px;
    background-color: var(--bg-white);
}

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

.form-title {
    font-size: 38px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-dark);
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.footer-main {
    background-color: #1a2634;
    color: #c7d0d9;
    padding: 80px 100px 40px;
}

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 600;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #c7d0d9;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid #2d3e50;
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
    color: #8899a6;
}

.disclaimer {
    background-color: #fff8e1;
    padding: 24px 32px;
    margin: 40px 0;
    border-left: 4px solid #ffa726;
    font-size: 14px;
    color: #5d4037;
    line-height: 1.6;
}

.reference-list {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.reference-list h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.reference-list ol {
    padding-left: 20px;
}

.reference-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.reference-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    vertical-align: super;
}

.citation:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-text a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #27ae60;
    color: var(--bg-white);
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.cookie-reject:hover {
    background-color: var(--bg-white);
    color: #2c3e50;
}

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

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

.contact-split {
    display: flex;
    min-height: 80vh;
}

.contact-left {
    flex: 1;
    padding: 100px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right {
    flex: 1;
    padding: 100px;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 60px;
}

.legal-title {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.legal-section {
    margin-bottom: 40px;
}

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

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    margin-top: 24px;
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 32px;
    margin-bottom: 16px;
}

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

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

    .hero-left,
    .split-content,
    .contact-left,
    .contact-right {
        padding: 60px 40px;
    }

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

    .services-grid,
    .form-section {
        padding: 60px 40px;
    }

    .footer-main {
        padding: 60px 40px 32px;
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .service-card {
        min-width: 100%;
    }
}