/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #e2a945;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.8;
    background: var(--bg-white);
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Navigation - Editorial Minimal Style */
.nav-container {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

nav {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    text-transform: lowercase;
}

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

/* Editorial Article Container */
.article-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.wide-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Hero - Editorial Style */
.hero-editorial {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
    text-align: left;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-editorial .subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-editorial .intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* Inline Images - Story Flow */
.inline-image {
    margin: 3rem 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.inline-image figcaption {
    padding: 1rem;
    background: var(--bg-light);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

/* Story Section */
.story-section {
    margin: 4rem 0;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-section h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--secondary-color);
}

.story-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Pull Quote */
.pull-quote {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-light);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.7;
}

.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-light);
}

/* Inline CTA - Editorial */
.inline-cta {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    text-align: center;
}

.inline-cta h3 {
    color: var(--bg-white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.inline-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #f5c45c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-link {
    display: inline;
    padding: 0.3rem 0.8rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 3px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background: #f5c45c;
}

/* Services Grid - Editorial Cards */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

.service-price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.form-section h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background: var(--bg-white);
    transition: border 0.3s ease;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* List Styles */
.feature-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Footer */
footer {
    margin-top: 6rem;
    padding: 3rem 1.5rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.footer-content {
    max-width: 680px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--bg-white);
    opacity: 0.8;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

.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 {
    max-width: 680px;
    margin: 6rem auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--bg-white);
}

/* Contact Info */
.contact-info {
    margin: 3rem 0;
}

.info-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-item p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0.3rem 0;
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-container h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2rem;
    }

    .hero-editorial .subtitle {
        font-size: 1.1rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
        justify-content: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .story-section h2 {
        font-size: 1.6rem;
    }

    .pull-quote {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .inline-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .article-container,
    .hero-editorial {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-editorial h1 {
        font-size: 1.7rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sticky-cta .cta-button {
    box-shadow: var(--shadow-lg);
}

/* About Page Styles */
.team-intro {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.values-section {
    margin: 3rem 0;
}

.value-item {
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 3px solid var(--accent-color);
}

.value-item h3 {
    margin-bottom: 0.8rem;
}

/* Services Page Specific */
.service-intro {
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: center;
}

.comparison-note {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
    text-align: center;
    font-style: italic;
    color: var(--text-light);
}
