:root {
    --primary: #2c5282;
    --primary-dark: #1a365d;
    --secondary: #ed8936;
    --accent: #38a169;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-warm: #fffaf0;
    --bg-blue: #ebf8ff;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

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

header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
    font-weight: 500;
}

nav a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

nav a.active {
    background-color: var(--primary);
    color: var(--white);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
}

.editorial-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.editorial-hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
    font-size: 16px;
}

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

.article-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
}

.article-container h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 24px;
    margin-top: 48px;
}

.article-container h2:first-child {
    margin-top: 0;
}

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

.article-container ul, .article-container ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-container li {
    margin-bottom: 8px;
}

.inline-image {
    width: 100%;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.highlight-box {
    background-color: var(--bg-blue);
    border-left: 4px solid var(--primary);
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.cta-inline {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-light) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 48px 0;
}

.cta-inline h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.cta-inline p {
    margin-bottom: 24px;
    color: var(--text-light);
}

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

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.services-grid h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 48px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-horizontal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

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

.service-image {
    flex: 0 0 300px;
    background-color: var(--bg-light);
    min-height: 200px;
}

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

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

.service-content h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

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

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

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

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.features-list li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
}

.features-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

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

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

.testimonial-container h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 48px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author-info h4 {
    color: var(--primary-dark);
    margin-bottom: 4px;
}

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

.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 24px;
}

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

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

.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: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    font-family: inherit;
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    line-height: 1.6;
}

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

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

.footer-section ul a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

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

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.disclaimer {
    max-width: 1100px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
}

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

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

.cookie-accept {
    background-color: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s, border-color 0.2s;
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 24px;
}

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

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

.content-container h2:first-child {
    margin-top: 0;
}

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

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

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

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

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

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

.contact-info-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    border-radius: 12px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.team-grid h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 48px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-member {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 300px;
    text-align: center;
}

.team-member-image {
    height: 250px;
    background-color: var(--bg-light);
}

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

.team-member-info {
    padding: 24px;
}

.team-member-info h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.team-member-info span {
    color: var(--secondary);
    font-weight: 500;
}

.team-member-info p {
    color: var(--text-light);
    margin-top: 12px;
    font-size: 14px;
}

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

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

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

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

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 32px;
}

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

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.mobile-nav {
    display: none;
    width: 100%;
    padding: 16px 0;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        display: none;
    }

    nav.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
    }

    nav.active a {
        width: 100%;
        text-align: center;
    }

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

    .service-image {
        flex: 0 0 auto;
        height: 200px;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.email-display {
    user-select: text;
}

.references-section {
    background-color: var(--bg-light);
    padding: 40px 24px;
    margin-top: 40px;
}

.references-list {
    max-width: 800px;
    margin: 0 auto;
}

.references-list h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.references-list ol {
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 14px;
}

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

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