/*
  Theme: Consultoría Financiera en Argentina
  Design System: Minimalist with Hyperrealistic Textures
  Color Scheme: Analogous
  Fonts: Inter (Headings), IBM Plex Sans (Body)
*/

:root {
    /* Analogous Color Scheme - Base: Professional Blue */
    --primary-color: #0D2C4F; /* Deep Corporate Blue */
    --primary-color-darker: #091f36;
    --primary-color-lighter: #1a589f;
    --primary-color-rgb: 13, 44, 79;

    --accent-color-1: #4DB0A2; /* Sophisticated Teal */
    --accent-color-1-darker: #3A8C7D;
    --accent-color-1-lighter: #6DC4B7;
    --accent-color-1-rgb: 77, 176, 162;
    
    --accent-color-2: #3F4A8A; /* Muted Indigo (less used, for subtle variations) */
    --accent-color-2-darker: #2c3360;
    --accent-color-2-lighter: #5e6fd0;

    --neutral-light: #F8F9FA; /* Bootstrap's Light Gray / Off-white */
    --neutral-medium: #E9ECEF; /* Slightly darker gray for subtle contrast */
    --neutral-dark: #343A40; /* Bootstrap's Dark Gray */
    
    --text-color-dark: #212529; /* Bootstrap's Default Text - Dark, high contrast */
    --text-color-light: #FFFFFF; /* White */
    --text-color-muted: #6c757d; /* Bootstrap's muted text */

    /* Fonts */
    --font-family-headings: 'Inter', sans-serif;
    --font-family-body: 'IBM Plex Sans', sans-serif;

    /* Spacing & Borders */
    --section-padding-y: 4.5rem; /* 72px */
    --section-padding-x: 1rem; /* 16px */
    --card-border-radius: 0.5rem; /* 8px */
    --button-border-radius: 0.3rem; /* ~5px */
    
    --box-shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --box-shadow-md: 0 .5rem 1rem rgba(0,0,0,.15);
    --box-shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);

    /* Transitions */
    --transition-speed: 0.3s;
    --transition-timing: ease-in-out;
}

/* --- GLOBAL STYLES --- */
body {
    font-family: var(--font-family-body);
    color: var(--text-color-dark);
    background-color: var(--text-color-light);
    line-height: 1.6;
    font-size: 16px; /* Base font size */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    color: var(--primary-color); /* Default heading color */
    font-weight: 700;
    line-height: 1.3;
}
h1 { font-size: 2.5rem; } /* 40px */
h2 { font-size: 2rem; }   /* 32px - Section Titles */
h3 { font-size: 1.75rem; }/* 28px */
h4 { font-size: 1.5rem; } /* 24px */
h5 { font-size: 1.25rem; }/* 20px - Card Titles */
h6 { font-size: 1rem; }   /* 16px */

p {
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}

a {
    color: var(--accent-color-1);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-timing);
}
a:hover {
    color: var(--accent-color-1-darker);
    text-decoration: underline;
}

/* General Section Styling */
.section-padding {
    padding: var(--section-padding-y) var(--section-padding-x);
}

.bg-light {
    background-color: var(--neutral-light) !important;
}

.section-title {
    font-family: var(--font-family-headings);
    color: var(--text-color-dark); /* For high contrast on light backgrounds */
    font-weight: 700;
    margin-bottom: 3rem !important;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--accent-color-1);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* --- GLOBAL BUTTON STYLES --- */
.btn, button, input[type='submit'], input[type='button'] {
    font-family: var(--font-family-body);
    font-weight: 700;
    padding: 0.75rem 1.75rem; /* Increased padding */
    border-radius: var(--button-border-radius);
    transition: all var(--transition-speed) var(--transition-timing);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Increased letter spacing */
    border: 2px solid transparent;
    box-shadow: var(--box-shadow-sm);
    line-height: 1.5; /* Ensure text is vertically centered */
}

.btn-primary, button.btn-primary, input[type='submit'].btn-primary {
    background-color: var(--accent-color-1);
    color: var(--text-color-light);
    border-color: var(--accent-color-1);
}

.btn-primary:hover, button.btn-primary:hover, input[type='submit'].btn-primary:hover {
    background-color: var(--accent-color-1-darker);
    border-color: var(--accent-color-1-darker);
    color: var(--text-color-light);
    transform: translateY(-3px) scale(1.02); /* 3D-ish effect */
    box-shadow: var(--box-shadow-md);
}

.btn-outline-primary, button.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, button.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02); /* 3D-ish effect */
    box-shadow: var(--box-shadow-md);
}

/* --- HEADER / NAVBAR --- */
.main-header.navbar {
    background-color: var(--text-color-light);
    box-shadow: var(--box-shadow-sm);
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: background-color var(--transition-speed) var(--transition-timing), padding var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
}

.main-header.navbar.scrolled { /* JS will add/remove this class */
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--box-shadow-md);
}

.navbar-brand {
    font-family: var(--font-family-headings);
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.75rem;
    transition: transform var(--transition-speed) var(--transition-timing);
}
.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-family: var(--font-family-body);
    font-weight: 700;
    color: var(--primary-color-darker) !important;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 0.6rem 1.1rem !important; /* Fine-tuned padding */
    border-radius: var(--button-border-radius);
    transition: color var(--transition-speed) var(--transition-timing), background-color var(--transition-speed) var(--transition-timing), transform var(--transition-speed) var(--transition-timing);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color-1) !important;
    background-color: rgba(var(--accent-color-1-rgb), 0.08);
    transform: translateY(-2px);
}
.nav-link::before { /* Underline effect for active/hover */
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color-1);
    transition: width var(--transition-speed) var(--transition-timing);
}
.nav-link:hover::before, .nav-link.active::before {
    width: 70%;
}


.navbar-toggler {
    border: 1px solid transparent;
    padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(var(--primary-color-rgb), 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: var(--section-padding-y) var(--section-padding-x);
    /* HTML has linear-gradient for overlay */
}

.hero-title {
    font-family: var(--font-family-headings);
    color: var(--text-color-light) !important;
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: var(--font-family-body);
    color: var(--text-color-light) !important;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem); /* Responsive font size */
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    line-height: 1.7;
}

.hero-cta-button {
    padding: 0.9rem 2.8rem; /* Larger CTA */
    font-size: 1.15rem;
}

/* --- CARD STYLING (GLOBAL) --- */
.card {
    border: 1px solid var(--neutral-medium);
    border-radius: var(--card-border-radius);
    transition: transform var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
    overflow: hidden;
    background-color: var(--text-color-light);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards in a row have same height if needed */
    box-shadow: var(--box-shadow-sm);
}

.card:hover {
    transform: translateY(-6px) scale(1.01); /* Enhanced 3D hover */
    box-shadow: var(--box-shadow-lg); /* More prominent shadow */
}

.card .card-image { /* Wrapper for image, STROGO */
    width: 100%;
    overflow: hidden;
    text-align: center; /* Center img if it's not 100% width */
    position: relative; /* For potential overlays */
}
.card .card-image::before { /* Subtle gradient overlay on images for text readability if text is on image */
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0; /* Hidden by default, can be shown if text is over image */
    transition: opacity var(--transition-speed) var(--transition-timing);
}
/* .card:hover .card-image::before { opacity: 1; } */ /* Example if needed */


.card .card-image img {
    width: 100%;
    height: 220px; /* STROGO: fixed height for card image containers */
    object-fit: cover; /* STROGO: object-fit: cover */
    display: block;
    margin: 0 auto; /* STROGO: center images */
    transition: transform var(--transition-speed) var(--transition-timing);
}
.card:hover .card-image img {
    transform: scale(1.05); /* Subtle zoom on image hover */
}


.card-body {
    padding: 1.75rem; /* Increased padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: var(--text-color-dark);
}
.card-body .card-title {
    font-family: var(--font-family-headings);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem; /* Slightly larger card titles */
}
.card-body .card-text {
    font-family: var(--font-family-body);
    color: var(--text-color-dark);
    font-size: 0.95rem;
    line-height: 1.65;
    flex-grow: 1; /* Push actions to bottom */
    margin-bottom: 1rem;
}
.card-body .btn, .card-body .read-more-link {
    margin-top: auto; /* Pushes button to the bottom of the card body */
    align-self: flex-start; /* Aligns button to the left */
}


/* Specific card types */
.service-card .card-image img, .workshop-card .card-image img {
    height: 200px; /* Adjust if needed for these specific cards */
}
.resource-card .card-title a {
    color: var(--primary-color);
}
.resource-card .card-title a:hover {
    color: var(--accent-color-1);
}


/* --- ABOUT US SECTION --- */
.stat-widgets .stat-widget {
    background-color: var(--text-color-light);
    border: 1px solid var(--neutral-medium);
    border-radius: var(--card-border-radius);
    padding: 1.75rem;
    text-align: center;
    transition: transform var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
    box-shadow: var(--box-shadow-sm);
}
.stat-widgets .stat-widget:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}
.stat-widgets .stat-widget h3 { /* The number */
    font-family: var(--font-family-headings);
    color: var(--accent-color-1);
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}
.stat-widgets .stat-widget p { /* The description */
    font-family: var(--font-family-body);
    color: var(--text-color-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- CUSTOMER STORIES (CAROUSEL) --- */
#customerStoriesCarousel .carousel-item {
    padding: 0 50px; /* Space for controls */
}
#customerStoriesCarousel .customer-story-card {
    border: none; /* Remove card border if inside carousel */
    box-shadow: var(--box-shadow-md); /* Add shadow directly */
}
#customerStoriesCarousel .card-image img {
    border-radius: var(--card-border-radius) 0 0 var(--card-border-radius); /* Rounded on one side */
     height: 100%; /* Adjust to fill height of card if fixed */
    object-fit: cover;
}

@media (max-width: 767px) {
    #customerStoriesCarousel .card-image img {
        border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
        max-height: 250px; /* Limit height on mobile */
    }
}

#customerStoriesCarousel .carousel-control-prev-icon,
#customerStoriesCarousel .carousel-control-next-icon {
    background-color: var(--primary-color); /* Darker controls */
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    background-size: 50% 50%;
}


/* --- EVENTS CALENDAR (TIMELINE) --- */
.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
    margin: 0 auto;
    max-width: 900px;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px; /* Thinner line */
    background: var(--neutral-medium);
    left: 50%;
    margin-left: -1.5px;
}
.timeline-item {
    margin-bottom: 40px;
    position: relative;
}
.timeline-item::after { content: ""; display: table; clear: both; }
.timeline-icon {
    position: absolute;
    left: 50%;
    top: 5px; /* Adjusted top */
    transform: translateX(-50%);
    width: 44px; /* Slightly smaller */
    height: 44px;
    border-radius: 50%;
    background: var(--accent-color-1);
    border: 3px solid var(--text-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 0 3px var(--accent-color-1), inset 0 1px 0 rgba(0,0,0,.08), 0 2px 0 3px rgba(0,0,0,.05);
}
.timeline-icon img { max-width: 55%; max-height: 55%; }
.timeline-content {
    padding: 1.5rem; /* Consistent padding */
    background: var(--text-color-light);
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow-md);
    position: relative;
    width: 45%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-content:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--box-shadow-lg); }
.timeline-content .card-title { font-size: 1.15rem; color: var(--primary-color); }
.timeline-content .card-text { font-size: 0.9rem; color: var(--text-color-dark); }
.timeline-content .text-muted small { font-size: 0.8rem; }

.timeline-item:nth-child(odd) .timeline-content { float: left; text-align: right; clear: both; }
.timeline-item:nth-child(odd) .timeline-content::before {
    content: ''; position: absolute; right: -12px; top: 18px;
    border-style: solid; border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent var(--text-color-light);
    filter: drop-shadow(1px 0px 1px rgba(0,0,0,0.05)); /* Subtle shadow for arrow */
}
.timeline-item:nth-child(even) .timeline-content { float: right; text-align: left; clear: both; }
.timeline-item:nth-child(even) .timeline-content::before {
    content: ''; position: absolute; left: -12px; top: 18px;
    border-style: solid; border-width: 12px 12px 12px 0;
    border-color: transparent var(--text-color-light) transparent transparent;
    filter: drop-shadow(-1px 0px 1px rgba(0,0,0,0.05));
}

@media (max-width: 767px) {
    .timeline::before { left: 22px; }
    .timeline-item .timeline-icon { left: 22px; }
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 65px); float: right; text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -12px; top: 18px; border-width: 12px 12px 12px 0;
        border-color: transparent var(--text-color-light) transparent transparent;
    }
}

/* --- FAQ (ACCORDION) --- */
.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--neutral-medium);
    border-radius: var(--card-border-radius) !important; /* Override Bootstrap */
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
}
.accordion-button {
    font-family: var(--font-family-body);
    font-weight: 700;
    font-size: 1.1rem; /* Larger text for question */
    color: var(--primary-color);
    background-color: var(--neutral-light);
    border: none;
    box-shadow: none !important;
    padding: 1.25rem 1.5rem; /* More padding */
    text-align: left;
}
.accordion-button:not(.collapsed) {
    color: var(--accent-color-1);
    background-color: var(--neutral-medium);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.05); /* Subtle separator */
}
.accordion-button:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--accent-color-1-rgb), .25) !important;
}
.accordion-button::after { /* Custom icon */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230D2C4F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform var(--transition-speed) var(--transition-timing);
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234DB0A2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
.accordion-body {
    font-family: var(--font-family-body);
    color: var(--text-color-dark);
    background-color: var(--text-color-light);
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- CONTACT FORM --- */
.contact-form .form-label {
    font-family: var(--font-family-body);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.modern-input, .form-control {
    font-family: var(--font-family-body);
    padding: 0.85rem 1.1rem; /* Slightly more padding */
    border: 1px solid var(--neutral-medium);
    border-radius: var(--button-border-radius);
    background-color: var(--text-color-light);
    color: var(--text-color-dark);
    transition: border-color var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
    font-size: 1rem;
}
.modern-input:focus, .form-control:focus {
    border-color: var(--accent-color-1);
    box-shadow: 0 0 0 .25rem rgba(var(--accent-color-1-rgb), .25);
    outline: none;
}
.modern-input::placeholder, .form-control::placeholder { color: var(--text-color-muted); opacity: 1; }
.contact-form {
    background-color: var(--text-color-light);
    padding: 2.5rem; /* More padding for the form container */
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow-lg);
}
.contact-form .modern-button {
    width: 100%; /* Full width submit button */
    max-width: 300px; /* Max width for larger screens */
    margin: 0 auto;
    display: block;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: var(--section-padding-y) var(--section-padding-x);
    font-family: var(--font-family-body);
}
.main-footer .footer-title {
    font-family: var(--font-family-headings);
    color: var(--text-color-light);
    margin-bottom: 1.2rem;
    font-size: 1.25rem; /* Slightly larger footer titles */
    opacity: 0.9;
}
.main-footer .footer-links li, .main-footer .footer-social-links li {
    margin-bottom: 0.6rem;
}
.main-footer .footer-link {
    color: var(--neutral-light);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-timing), padding-left var(--transition-speed) var(--transition-timing);
    opacity: 0.85;
    font-size: 0.95rem;
}
.main-footer .footer-link:hover {
    color: var(--accent-color-1);
    text-decoration: none; /* No underline, rely on color change */
    padding-left: 5px; /* Subtle indent on hover */
    opacity: 1;
}
.main-footer hr { border-top: 1px solid rgba(255, 255, 255, 0.15); }
.main-footer .small { color: var(--neutral-light); opacity: 0.75; font-size: 0.85rem;}

/* --- SPECIFIC PAGE STYLES --- */
/* success.html */
.success-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    background-color: var(--neutral-light);
}
.success-page-container .icon { /* For a success icon */
    font-size: 4rem;
    color: var(--accent-color-1);
    margin-bottom: 1.5rem;
}
.success-page-container h1 {
    font-family: var(--font-family-headings);
    color: var(--accent-color-1);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}
.success-page-container p {
    font-family: var(--font-family-body);
    color: var(--text-color-dark);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* privacy.html & terms.html */
.privacy-page-container, .terms-page-container {
    padding-top: 120px; /* Ensure content is below fixed header (approx 80px for header + 40px buffer) */
    padding-bottom: var(--section-padding-y);
    color: var(--text-color-dark);
}
.privacy-page-container .container, .terms-page-container .container {
    max-width: 800px; /* Content width for readability */
}
.privacy-page-container h1, .terms-page-container h1 {
    font-size: 2.2rem; margin-bottom: 2rem; color: var(--primary-color);
}
.privacy-page-container h2, .terms-page-container h2 {
    font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--primary-color);
}
.privacy-page-container p, .terms-page-container p,
.privacy-page-container li, .terms-page-container li {
    font-family: var(--font-family-body);
    line-height: 1.75;
    color: var(--text-color-dark);
    font-size: 1rem;
}
.privacy-page-container ul, .terms-page-container ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}

/* --- ANIMATIONS & UTILITIES --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--transition-timing), transform 0.7s var(--transition-timing);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.parallax-background { /* Basic CSS parallax, use with caution on mobile */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Read More Link Style (if not using buttons) */
a.read-more-link {
    font-family: var(--font-family-body);
    font-weight: 700;
    color: var(--accent-color-1);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-timing), letter-spacing var(--transition-speed) var(--transition-timing);
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}
a.read-more-link::after { content: ' →'; }
a.read-more-link:hover {
    color: var(--accent-color-1-darker);
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for typography */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
    .hero-subtitle { font-size: clamp(1rem, 3vw, 1.2rem); }
}

/* Cookie Consent Popup (mostly styled inline via HTML as requested) */
#cookieConsentPopup {
    font-family: var(--font-family-body); /* Ensure font consistency if needed */
}
#acceptCookieButton {
    background-color: var(--accent-color-1); /* Example override */
    transition: background-color var(--transition-speed) var(--transition-timing);
}
#acceptCookieButton:hover {
    background-color: var(--accent-color-1-darker);
}