/* 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: #2c3e50;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #1e40af;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #fbbf24;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-links a {
    color: #475569;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Editorial Hero */
.editorial-hero {
    max-width: 720px;
    margin: 4rem auto 3rem;
    padding: 0 1.5rem;
}

.hero-content {
    margin-bottom: 2.5rem;
}

.editorial-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 2rem;
}

/* Editorial Section */
.editorial-section {
    padding: 3rem 0;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    margin: 0.1rem 0.2rem 0 0;
    color: #2563eb;
    font-weight: 700;
}

.editorial-section p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.editorial-section h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #0f172a;
    font-weight: 700;
}

.editorial-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1e293b;
    font-weight: 600;
}

.editorial-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.editorial-section li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.inline-image {
    margin: 2.5rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #475569;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 4px;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #64748b;
}

.reference {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Insight Box */
.insight-box {
    background-color: #fef3c7;
    border: 2px solid #fbbf24;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.insight-box h3 {
    margin-top: 0;
    color: #92400e;
}

.insight-box p {
    margin-bottom: 0;
    color: #78350f;
}

/* CTA Sections */
.cta-inline {
    background-color: #eff6ff;
    padding: 3rem 1.5rem;
    margin: 3rem 0;
}

.cta-inline.secondary {
    background-color: #fef3c7;
}

.cta-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.cta-box.centered {
    text-align: center;
}

.cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.cta-box p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #1e40af;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.cta-button.secondary {
    background-color: #64748b;
}

.cta-button.secondary:hover {
    background-color: #475569;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f8fafc;
    padding: 4rem 1.5rem;
    margin: 3rem 0;
}

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

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

.testimonial cite {
    font-size: 1rem;
    font-style: normal;
    color: #64748b;
}

/* Programs Section */
.programs-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.programs-section.full-width {
    max-width: 100%;
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
}

.program-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
    border-color: #2563eb;
    border-width: 3px;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
}

.program-card.premium {
    border-color: #7c3aed;
}

.badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.program-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.program-tagline {
    font-size: 1.125rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.program-description {
    margin-bottom: 2rem;
}

.program-description p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.program-features,
.program-ideal {
    margin-bottom: 2rem;
}

.program-features h3,
.program-ideal h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.program-features ul,
.program-ideal ul {
    list-style: none;
    margin-left: 0;
}

.program-features li,
.program-ideal li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #475569;
}

.program-features li::before,
.program-ideal li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.program-pricing {
    border-top: 2px solid #e5e7eb;
    padding-top: 2rem;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.select-program {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-program:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    background-color: #f8fafc;
    padding: 4rem 1.5rem;
    margin: 3rem 0;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #0f172a;
}

.form-container > p {
    text-align: center;
    color: #475569;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

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

/* Research List */
.research-list {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    color: #ffffff;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0e7ff;
}

.final-cta .cta-button {
    background-color: #ffffff;
    color: #2563eb;
}

.final-cta .cta-button:hover {
    background-color: #f1f5f9;
    color: #1e40af;
}

/* References Section */
.references-section {
    background-color: #f8fafc;
    padding: 3rem 1.5rem;
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.references-list {
    list-style-position: inside;
}

.references-list li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
}

.references-list a {
    color: #2563eb;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 1.5rem;
    background-color: #fef3c7;
}

.disclaimer {
    font-size: 0.875rem;
    color: #78350f;
    line-height: 1.6;
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #475569;
    text-align: center;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cookie-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    opacity: 0.9;
}

.cookie-btn.reject {
    background-color: #64748b;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    opacity: 0.9;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    z-index: 1500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sticky-cta:hover {
    background-color: #1e40af;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Page Content */
.page-content {
    min-height: 60vh;
}

.page-hero {
    max-width: 720px;
    margin: 4rem auto 3rem;
    padding: 0 1.5rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
}

/* Philosophy Grid */
.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.philosophy-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.philosophy-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #0f172a;
}

.philosophy-item p {
    margin-bottom: 0;
    color: #475569;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 1.5rem;
    background-color: #f8fafc;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.comparison-table td {
    color: #475569;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.faq-item p {
    color: #475569;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 3rem 1.5rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.contact-item p {
    color: #475569;
    line-height: 1.6;
}

.email-display {
    font-weight: 600;
    color: #1e293b;
}

.email-note {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.map-placeholder {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #475569;
}

/* Info Section */
.info-section {
    padding: 4rem 1.5rem;
    background-color: #f8fafc;
}

.help-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.help-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.help-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #0f172a;
}

.help-item p {
    margin-bottom: 0;
    color: #475569;
}

/* CTA Section */
.cta-section {
    padding: 4rem 1.5rem;
}

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
    padding: 4rem 1.5rem;
}

.thanks-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

.thanks-lead {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 600;
}

.thanks-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.step {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.step p {
    color: #475569;
}

.thanks-actions {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.contact-reminder h3 {
    margin-bottom: 1rem;
    color: #0f172a;
}

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

/* Legal Page */
.legal-page {
    padding: 3rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.update-date {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.legal-section h3 {
    font-size: 1.375rem;
    margin: 1.5rem 0 1rem;
    color: #1e293b;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.7;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    color: #475569;
}

.info-box {
    background-color: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box h3 {
    margin-top: 0;
    color: #0f172a;
}

.info-box p,
.info-box ul {
    color: #475569;
}

.cookies-table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

.cookies-table td {
    color: #475569;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .editorial-hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .programs-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .program-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 300px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .help-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .help-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .steps-grid {
        flex-direction: row;
    }

    .step {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .editorial-hero h1 {
        font-size: 3.5rem;
    }

    .programs-container {
        flex-direction: row;
    }

    .program-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .philosophy-grid {
        flex-direction: row;
    }

    .philosophy-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .help-grid {
        flex-direction: row;
    }

    .help-item {
        flex: 1 1 calc(25% - 1.5rem);
    }
}

/* Print Styles */
@media print {
    .ad-disclosure,
    .main-nav,
    .cookie-banner,
    .sticky-cta,
    .cta-inline,
    .cta-section,
    .form-section {
        display: none;
    }
}