:root {
    --primary: #1a365d;
    --primary-light: #2d4a7c;
    --secondary: #c9a227;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-warm: #fffbf0;
    --border: #e2e8f0;
    --success: #38a169;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --max-content: 680px;
    --max-wide: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.ad-disclosure {
    background-color: var(--primary);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 16px 24px;
}

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

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

.nav-list a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.hero-editorial {
    background-color: var(--bg-warm);
    padding: 80px 24px;
}

.hero-content {
    max-width: var(--max-content);
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

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

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

.hero-image-container {
    background-color: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 40px auto 0;
    max-width: 900px;
}

.hero-image-container img {
    width: 100%;
    height: 400px;
}

.article-section {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 60px 24px;
}

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

.article-section p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.article-section p:last-child {
    margin-bottom: 0;
}

.inline-image {
    background-color: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 32px 0;
}

.inline-image img {
    width: 100%;
    height: 320px;
}

.wide-section {
    background-color: var(--bg-light);
    padding: 80px 24px;
}

.wide-section-inner {
    max-width: var(--max-wide);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: var(--max-content);
    margin: 0 auto 48px;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    flex: 1 1 320px;
    max-width: 360px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    background-color: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    height: 180px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
}

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

.service-card p {
    color: var(--text-medium);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.cta-inline {
    background-color: var(--primary);
    padding: 48px 24px;
    text-align: center;
}

.cta-inline-content {
    max-width: var(--max-content);
    margin: 0 auto;
}

.cta-inline h3 {
    color: var(--bg-white);
    font-size: 28px;
    margin-bottom: 16px;
}

.cta-inline p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

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

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

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-outline-light {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.testimonial-section {
    padding: 80px 24px;
    background-color: var(--bg-warm);
}

.testimonial-content {
    max-width: var(--max-content);
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 14px;
}

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

.form-container {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 48px;
}

.form-container h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}

.form-container > p {
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 17px;
}

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

.about-hero h1 {
    color: var(--bg-white);
    font-size: 44px;
    margin-bottom: 16px;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    max-width: var(--max-content);
    margin: 0 auto;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 60px 24px;
    background-color: var(--bg-white);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.stat-label {
    color: var(--text-medium);
    font-size: 15px;
}

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

.team-grid {
    display: flex;
    gap: 32px;
    max-width: var(--max-wide);
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1 1 280px;
    max-width: 320px;
}

.team-card-image {
    background-color: var(--border);
    height: 240px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
}

.team-card-info {
    padding: 24px;
    text-align: center;
}

.team-card-info h3 {
    color: var(--primary);
    margin-bottom: 4px;
}

.team-card-info p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-info-section {
    padding: 80px 24px;
}

.contact-info-grid {
    display: flex;
    gap: 48px;
    max-width: var(--max-wide);
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1 1 300px;
}

.contact-info-block h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

.contact-info-block p {
    color: var(--text-medium);
    margin-bottom: 8px;
}

.contact-info-block strong {
    color: var(--text-dark);
}

.map-placeholder {
    background-color: var(--bg-light);
    padding: 80px 24px;
    text-align: center;
}

.map-container {
    max-width: var(--max-wide);
    margin: 0 auto;
    background-color: var(--border);
    height: 300px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

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

.thanks-content {
    max-width: 560px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--bg-white);
    stroke-width: 3;
    fill: none;
}

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

.thanks-content p {
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: 32px;
}

.legal-page {
    padding: 60px 24px 80px;
}

.legal-content {
    max-width: var(--max-content);
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.legal-content h2 {
    font-size: 22px;
    color: var(--primary);
    margin: 32px 0 16px;
}

.legal-content p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-medium);
}

.legal-content li {
    margin-bottom: 8px;
}

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

.footer-inner {
    max-width: var(--max-wide);
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius);
    margin: 48px auto;
    max-width: var(--max-content);
}

.disclaimer p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
}

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

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

.cookie-inner {
    max-width: var(--max-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    color: var(--text-medium);
    font-size: 14px;
}

.cookie-text a {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

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

.cookie-accept:hover {
    background-color: var(--primary-light);
}

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

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

.page-hero {
    background-color: var(--primary);
    padding: 80px 24px;
    text-align: center;
}

.page-hero h1 {
    color: var(--bg-white);
    font-size: 40px;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.services-detail {
    padding: 80px 24px;
}

.services-detail-inner {
    max-width: var(--max-wide);
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1 1 400px;
    background-color: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

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

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

.service-detail-content p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

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

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-list.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-image-container img {
        height: 260px;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

    .stats-row {
        gap: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-grid {
        gap: 32px;
    }

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

    .service-detail-item,
    .service-detail-item:nth-child(even) {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }
}
