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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7d;
    --accent-color: #4a8fb5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

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

/* Editorial Story Layout - Narrow Centered */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Minimal Hidden Style */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

nav a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section - Editorial Style */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

.hero-content {
    text-align: left;
}

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

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px 0;
}

/* Story-driven Flow Sections */
.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--bg-light);
    padding: 60px 0;
}

.section-dark {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--bg-white);
}

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

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

h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

/* Inline Images */
.inline-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 32px 0;
}

.image-small {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* CTAs Inside Content */
.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin: 8px 8px 8px 0;
}

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

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

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

.cta-inline {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 90;
    transition: all 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Services - Card Style within Editorial */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-title {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.price-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

.service-description {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

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

/* Form Styling */
.form-wrapper {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
}

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

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

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

select {
    cursor: pointer;
    background: var(--bg-white);
}

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

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

/* Contact Info */
.contact-info {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.contact-item {
    margin-bottom: 20px;
}

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

.contact-item p {
    color: var(--text-dark);
    margin: 0;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 48px 0 24px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

.cookie-button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.cookie-accept:hover {
    background: #059669;
}

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

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

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--bg-white);
    margin-bottom: 24px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    margin-top: 40px;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* About Page - Story Layout */
.about-intro {
    padding: 60px 0 40px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 48px 0;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 8px;
}

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

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

    nav ul.mobile-active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

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

    h2 {
        font-size: 28px;
    }

    .service-header {
        flex-direction: column;
        gap: 12px;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 14px;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
    }
}
