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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.35rem;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1e40af;
    text-decoration: underline;
}

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

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo:hover {
    color: #2563eb;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #444;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #2563eb;
    text-decoration: none;
}

/* Editorial Main Content */
.editorial-main {
    max-width: 720px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.editorial-content {
    background-color: #fff;
    padding: 3rem 2.5rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-top: 1rem;
}

.text-block {
    margin-bottom: 2.5rem;
}

.text-block ul {
    margin: 1.25rem 0 1.25rem 2rem;
}

.text-block li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

/* Inline Images */
.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

/* Highlight Section */
.highlight-section {
    background-color: #f8f9fa;
    border-left: 4px solid #2563eb;
    padding: 1.75rem 2rem;
    margin: 2.5rem 0;
}

.highlight-section h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.highlight-section p {
    margin-bottom: 0.75rem;
}

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

/* Testimonial Block */
.testimonial-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 4px;
}

.testimonial-block blockquote {
    border: none;
    padding: 0;
}

.testimonial-block p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-style: normal;
    color: #666;
    font-size: 0.9375rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* CTA Inline */
.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1e40af;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
}

/* Services Preview & Cards */
.services-preview, .services-detailed {
    margin: 3rem 0;
}

.section-intro {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.service-card, .service-detailed {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-card h3, .service-detailed h2 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.service-card p, .service-content p {
    margin-bottom: 1rem;
    color: #444;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price, .price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
}

.price {
    font-size: 1.5rem;
}

.price-large {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.price-note {
    font-size: 0.9375rem;
    color: #059669;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-service {
    padding: 0.75rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-service:hover {
    background-color: #1e40af;
    transform: translateY(-1px);
}

.service-detailed {
    background-color: #fff;
    border: 2px solid #e5e5e5;
}

.service-detailed.highlighted {
    border-color: #2563eb;
    background-color: #f8faff;
}

.service-content {
    margin-top: 1.5rem;
}

.service-includes {
    margin: 1.5rem 0;
}

.service-includes h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #444;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

/* Form Section */
.form-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.form-section h2 {
    margin-top: 0;
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background-color: #1e40af;
}

/* Contact Info */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.contact-method p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9375rem;
    color: #666;
    font-style: italic;
}

/* Thanks Message */
.thanks-message {
    background-color: #ecfdf5;
    border: 1px solid #059669;
    border-radius: 4px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.thanks-message p {
    color: #047857;
    margin-bottom: 0;
}

.final-note {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 3rem;
}

/* Legal Content */
.legal-content h2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.legal-content h2:first-of-type {
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
}

.content-list {
    list-style-type: disc;
    margin: 1.25rem 0 1.25rem 2rem;
}

.content-list li {
    margin-bottom: 0.75rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.note {
    font-size: 0.9375rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #d1d5db;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: all 0.2s ease;
}

.btn-sticky:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
    text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie, .btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie {
    background-color: #2563eb;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #1e40af;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie-alt:hover {
    background-color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        border-top: 1px solid #e5e5e5;
        display: none;
    }

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

    .nav-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f3f4f6;
    }

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

    .editorial-main {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-service {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie, .btn-cookie-alt {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .editorial-content {
        padding: 1.5rem 1rem;
    }

    .form-section {
        padding: 1.5rem;
    }
}