:root {
    /* Fonts */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;

    /* Pastel Color Palette */
    --color-background: #FDF6F0; /* Main background */
    --color-background-light: #fefcf9; /* Lighter background for elements */
    --color-text: #4A4A4A;      /* Main text color */
    --color-heading: #222222;   /* Main heading color */
    
    --color-primary: #A0D2DB;   /* Pastel Blue - Main Accent */
    --color-primary-darker: #82bfc9; /* Darker shade for hover/active */
    --color-primary-light: #cce7eb; /* Lighter shade */

    --color-secondary: #F7CAC9; /* Pastel Pink - Secondary Accent */
    --color-secondary-darker: #f5b7b5; /* Darker shade for hover/active */

    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-dark-gray: #333333; /* For darker text or elements */
    --color-medium-gray: #555555; /* For secondary text */
    --color-light-gray: #777777; /* For muted text */
    --color-border: #EAEAEA;    /* Borders */
    --color-shadow: rgba(0, 0, 0, 0.07);
    --color-shadow-hover: rgba(0, 0, 0, 0.12);

    /* Gradients & Overlays */
    --gradient-overlay-dark: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5));
    --gradient-overlay-subtle: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2));

    /* UI Elements */
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 12px;
    --box-shadow-soft: 0 6px 18px var(--color-shadow);
    --box-shadow-soft-hover: 0 10px 25px var(--color-shadow-hover);
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;

    /* Spacing (can be used with margin/padding utilities or specific components) */
    --space-xs: 0.5rem;  /* 8px */
    --space-sm: 1rem;    /* 16px */
    --space-md: 1.5rem;  /* 24px */
    --space-lg: 2rem;    /* 32px */
    --space-xl: 3rem;    /* 48px */

    /* Navbar Height (approximate, for offset calculations) */
    --navbar-height: 70px; 
}

/* Global Resets & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* Corresponds to 16px by default */
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 1rem; /* 16px */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

h1 { font-size: 2.8rem; margin-bottom: var(--space-md); } /* Approx 44.8px */
h2 { font-size: 2.2rem; } /* Approx 35.2px */
h3 { font-size: 1.8rem; } /* Approx 28.8px */
h4 { font-size: 1.4rem; } /* Approx 22.4px */
h5 { font-size: 1.15rem; } /* Approx 18.4px */
h6 { font-size: 1rem; }   /* Approx 16px */

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2.5rem; /* Larger section titles */
}

p {
    margin-bottom: var(--space-sm);
    color: var(--color-medium-gray);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-medium);
}

a:hover {
    color: var(--color-primary-darker);
    text-decoration: none; /* Often preferred in modern design */
}

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

ul, ol {
    list-style-position: inside;
    padding-left: 0; /* Bootstrap might reset this, adjust if needed for custom lists */
}
ul li, ol li {
    margin-bottom: var(--space-xs);
}

/* Main content area padding for subpages (privacy, terms) */
.main-content-subpage {
    padding-top: calc(var(--navbar-height) + var(--space-lg)); /* e.g., 70px + 32px = 102px */
}
/* Fallback if class not applied - general main padding */
main {
    padding-top: var(--space-lg); /* Default top padding for main content */
    padding-bottom: var(--space-lg);
}
/* Index page might override this with its hero section controlling top space */
body:has(#hero) main { /* If body has hero, main might not need default top padding */
    padding-top: 0;
}


/* Global Button Styles */
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.75rem 1.75rem; /* 12px 28px */
    font-size: 0.95rem; /* ~15px */
    border-radius: var(--border-radius-medium);
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn:focus, button:focus, input[type="submit"]:focus, input[type="button"]:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(var(--color-primary), 0.35); /* Focus ring with primary color */
}

/* Custom Primary Button (used in HTML as .btn-primary-custom) */
.btn-primary-custom {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary-custom:hover {
    background-color: var(--color-primary-darker);
    border-color: var(--color-primary-darker);
    color: var(--color-white);
}

/* Bootstrap's .btn-outline-secondary if used */
.btn-outline-secondary {
    color: var(--color-medium-gray);
    border-color: #ced4da; /* Bootstrap's default light border */
}
.btn-outline-secondary:hover {
    color: var(--color-white);
    background-color: var(--color-medium-gray);
    border-color: var(--color-medium-gray);
}


/* Navbar (.navbar-custom from HTML) */
.navbar-custom {
    background-color: rgba(253, 246, 240, 0.92); /* Semi-transparent pastel from body bg */
    backdrop-filter: blur(10px); /* Glassmorphism */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs);
    min-height: var(--navbar-height); /* Ensure it has a minimum height */
}

.navbar-custom .navbar-brand {
    font-family: var(--font-primary);
    color: var(--color-heading);
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
}

.navbar-custom .nav-link {
    font-family: var(--font-primary);
    color: var(--color-text);
    font-weight: 500;
    margin-left: var(--space-sm);
    margin-right: var(--space-sm);
    font-size: 1rem; /* 16px */
    transition: color var(--transition-medium);
    padding: 0.5rem 0; /* Adjust for better vertical alignment */
    position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--color-primary);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: var(--color-primary);
    transition: width var(--transition-medium), left var(--transition-medium);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 60%;
    left: 20%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.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(34, 34, 34, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.8em;
    height: 1.8em;
}

/* Hero Section (#hero from HTML) */
#hero {
    position: relative;
    color: var(--color-white);
    padding: 6rem 0; /* Adjust as needed, avoid fixed min-height */
    text-align: center;
    overflow: hidden; /* For parallax pseudo-element */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
}

#hero::before { /* Overlay for text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay-dark);
    z-index: 1; /* Behind content */
}

.hero-content {
    position: relative; /* To be on top of the pseudo-element */
    z-index: 2;
}

#hero h1 {
    font-size: 3.2rem; /* Adjusted for responsiveness */
    color: var(--color-white); /* Explicitly white */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin-bottom: var(--space-md);
}

#hero p.lead {
    font-size: 1.25rem; /* Adjusted lead paragraph */
    color: rgba(255,255,255,0.9); /* Slightly off-white for better readability */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
}

/* Card Styles (.custom-card from HTML) */
.custom-card {
    background-color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow-soft);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    margin-bottom: var(--space-lg);
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    height: 100%; /* For equal height cards in a row (Bootstrap row helps) */
    /* align-items: center; -- This centers the card-image and card-content blocks.
                               Usually, these blocks are full-width.
                               Content *within* these blocks can be centered if needed. */
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-soft-hover);
}

.card-image { /* Container for the image */
    width: 100%;
    height: 220px; /* Fixed height for image container */
    overflow: hidden; /* Clip image if it's larger */
    position: relative; /* For potential overlays on image */
}
.card-image img {
    width: 100%;
    height: 100%; /* Make image fill its container */
    object-fit: cover; /* Crucial for aspect ratio and filling */
    transition: transform var(--transition-slow);
}

.custom-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--space-md);
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure content block takes full width of card */
}
.custom-card .card-content.text-center { /* Utility if all content needs centering */
    text-align: center;
}
.custom-card .card-content.text-center > * {
    margin-left: auto;
    margin-right: auto;
}


.card-content h5 {
    font-family: var(--font-primary);
    color: var(--color-heading);
    margin-bottom: var(--space-xs);
    font-size: 1.25rem;
}

.card-content p {
    font-family: var(--font-secondary);
    color: var(--color-medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    flex-grow: 1; 
}
.card-content .btn, .card-content .read-more {
    margin-top: auto; /* Pushes button/link to the bottom */
    align-self: flex-start; /* Default for non-centered content */
}
.card-content.text-center .btn, .card-content.text-center .read-more {
    align-self: center;
}


/* "Read More" Link Style */
.read-more {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    padding-bottom: 3px;
    position: relative;
    transition: color var(--transition-medium);
    font-size: 0.9rem;
}
.read-more::after {
    content: '→'; /* Arrow for visual cue */
    margin-left: 0.3em;
    transition: transform var(--transition-medium);
    display: inline-block;
}
.read-more:hover {
    color: var(--color-primary-darker);
}
.read-more:hover::after {
    transform: translateX(4px);
}
/* Alternative underline style for read-more if preferred */
/*
.read-more::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary-light);
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: transform var(--transition-medium);
}
.read-more:hover::before {
    background-color: var(--color-primary);
    transform: scaleX(1);
}
*/


/* Carousel Customization (#customerStoriesCarousel from HTML) */
#customerStoriesCarousel .carousel-item {
    padding: 0 10%; /* Provides spacing on sides, adjust as needed */
}
#customerStoriesCarousel .custom-card { /* Testimonial card */
    box-shadow: none; 
    background-color: transparent;
    text-align: center; /* Center content within testimonial card */
}
#customerStoriesCarousel .card-image { /* Profile image container */
    width: 100px; /* Specific size for profile pic */
    height: 100px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-sm);
    border: 3px solid var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
#customerStoriesCarousel .card-content h5 {
    font-size: 1.1rem;
    color: var(--color-heading);
}
#customerStoriesCarousel .card-content p {
    font-size: 1rem;
    color: var(--color-text);
    font-style: italic;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--color-primary-light);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    border: none;
    opacity: 0.7;
    transition: opacity var(--transition-medium);
}
.carousel-indicators .active {
    background-color: var(--color-primary);
    opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0.8) sepia(1) saturate(3) hue-rotate(160deg); /* Custom color for arrows (adjust hue-rotate for desired primary shade) */
    width: 2rem;
    height: 2rem;
}

/* Timeline (.timeline, .timeline-item from HTML) */
/* Re-using styles from HTML structure and enhancing */
.timeline {
    position: relative;
    padding: var(--space-md) 0;
    list-style: none;
    margin: 0 auto;
    max-width: 900px; /* Max width for timeline readability */
}
.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    margin-left: -1.5px;
    background-color: var(--color-primary-light); 
}
.timeline-item {
    padding: var(--space-sm) var(--space-lg);
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: var(--space-md);
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: var(--space-md);
}
.timeline-item::after { /* The dot on the timeline */
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--color-background);
    border: 4px solid var(--color-primary);
    top: calc(var(--space-sm) + 10px); /* Align with content start */
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(odd)::after {
    right: -9px;
}
.timeline-item:nth-child(even)::after {
    left: -9px;
}
.timeline-content {
    padding: var(--space-md);
    background-color: var(--color-white); 
    position: relative;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-soft);
}
.timeline-content h5 {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}
.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}
.timeline-content .text-muted small {
    font-size: 0.8rem;
    color: var(--color-light-gray);
}


/* Contact Form styling (elements within #contactForm from HTML) */
#contactForm .form-control, #contactFormPage .form-control {
    border-radius: var(--border-radius-medium);
    padding: 0.8rem 1rem; /* 12.8px 16px */
    border: 1px solid var(--color-border);
    transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--color-text);
}
#contactForm .form-control:focus, #contactFormPage .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--color-primary), 0.25);
    background-color: var(--color-white);
}
#contactForm label, #contactFormPage label {
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}
#contact { /* Section containing the form */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax if desired */
    position: relative;
}
#contact::before { /* Overlay for background image */
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    /* background: rgba(253, 246, 240, 0.85); HTML had this for light bg */
    z-index: 0;
}
#contact .container {
    position: relative;
    z-index: 1;
}
#contact .p-4.p-md-5 { /* Form wrapper */
    background-color: rgba(255,255,255,0.95) !important; /* Ensure high alpha for readability */
    backdrop-filter: blur(5px); /* Subtle glassmorphism on form */
}


/* Footer (.footer-custom from HTML) */
.footer-custom {
    background-color: var(--color-dark-gray);
    color: #e0e0e0; 
    padding: var(--space-xl) 0 var(--space-md) 0;
    text-align: center;
}
.footer-custom h5 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
    font-family: var(--font-primary);
}
.footer-custom ul {
    list-style: none;
    padding-left: 0;
}
.footer-custom ul li a {
    color: var(--color-primary-light);
    font-size: 0.95rem;
    transition: color var(--transition-medium);
    padding: 0.2rem 0;
    display: inline-block;
}
.footer-custom ul li a:hover {
    color: var(--color-white);
    text-decoration: underline;
}
.footer-custom .social-links a { /* TEXT-ONLY social links */
    color: var(--color-primary-light);
    margin: 0 var(--space-xs);
    font-size: 0.95rem;
    display: inline-block;
    transition: color var(--transition-medium), transform var(--transition-medium);
}
.footer-custom .social-links a:hover {
    color: var(--color-white);
    transform: translateY(-2px);
}
.footer-custom hr {
    border-color: rgba(253, 246, 240, 0.15); 
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
}
.footer-custom p {
    color: #b0b0b0; /* Lighter than main footer text */
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Success Page Styling (.success-container from HTML) */
.success-container {
    min-height: calc(100vh - var(--navbar-height) - 131px); /* 131px is approx footer height, adjust! */
    /* Alternative to account for header/footer more dynamically: min-height: 80vh for content area */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg);
}
.success-container .success-icon svg {
    width: 80px;
    height: 80px;
    fill: var(--color-primary);
    margin-bottom: var(--space-md);
}
.success-container h1 {
    color: var(--color-heading);
    margin-bottom: var(--space-sm);
}
.success-container p.lead {
    color: var(--color-text);
    margin-bottom: var(--space-md);
}


/* ScrollReveal initial state (optional, if you want elements hidden before reveal) */
/* This is handled by ScrollReveal.js itself by setting visibility to hidden */
/* You might want to ensure a smooth transition once visible */
.sr-item-hidden { /* Example class you might add for pre-reveal styling */
    opacity: 0;
    transform: translateY(20px);
}
.sr-item-visible { /* Example class for post-reveal styling */
    opacity: 1;
    transform: translateY(0);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

/* Cookie Consent Popup (from HTML) */
#cookieConsentPopup {
    background-color: rgba(30,30,30,0.92) !important; /* Ensure dark enough */
    color: var(--color-white) !important;
    font-family: var(--font-secondary);
    padding: var(--space-sm) var(--space-md) !important;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}
#cookieConsentPopup p {
    color: #f0f0f0 !important; /* Lighter white for text */
    margin-bottom: var(--space-sm) !important;
    font-size: 0.9rem;
}
#cookieConsentPopup a {
    color: var(--color-primary) !important;
    text-decoration: underline !important;
}
#cookieConsentPopup a:hover {
    color: var(--color-primary-light) !important;
}
#cookieConsentPopup button {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: none !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: var(--border-radius-small) !important;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    text-transform: none; /* Override global button style if needed */
}
#cookieConsentPopup button:hover {
    background-color: var(--color-primary-darker) !important;
    transform: none; /* Override global button style if needed */
    box-shadow: none; /* Override global button style if needed */
}

/* Responsive Adjustments */
@media (max-width: 991px) { /* Medium devices (tablets, less than 992px) */
    h1 { font-size: 2.5rem; }
    h2, .section-title { font-size: 2rem; }
    h3 { font-size: 1.6rem; }

    #hero h1 { font-size: 2.8rem; }
    #hero p.lead { font-size: 1.15rem; }

    .navbar-custom .nav-link { margin-left: var(--space-xs); margin-right: var(--space-xs); font-size: 0.95rem;}
    #customerStoriesCarousel .carousel-item { padding: 0 5%; }

    .timeline:before { left: 30px; }
    .timeline-item, .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: calc(30px + var(--space-md)); /* Space for line and dot */
        padding-right: var(--space-sm);
    }
    .timeline-item::after, .timeline-item:nth-child(even)::after {
        left: 21px; /* 30px (line pos) - 9px (half dot width) */
    }
}

@media (max-width: 767px) { /* Small devices (landscape phones, less than 768px) */
    body { font-size: 0.95rem; /* Slightly smaller base font */ }
    h1 { font-size: 2.2rem; }
    h2, .section-title { font-size: 1.8rem; margin-bottom: var(--space-lg); }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.2rem; }

    #hero { padding: 4rem 0; }
    #hero h1 { font-size: 2.2rem; }
    #hero p.lead { font-size: 1rem; }

    .btn, button, input[type="submit"], input[type="button"] {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
    .navbar-collapse {
        background-color: rgba(253, 246, 240, 0.98); /* Solid background for mobile menu */
        margin-top: var(--space-xs);
        padding: var(--space-sm);
        border-radius: var(--border-radius-medium);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .navbar-custom .nav-link { margin: var(--space-xs) 0; display: block; text-align: center;}
    .navbar-custom .nav-link::after { left: 50%; transform: translateX(-50%); } /* Center underline on mobile */
    .navbar-custom .nav-link:hover::after,
    .navbar-custom .nav-link.active::after {
        width: 30%; /* Shorter underline for mobile */
        left: 35%;
    }


    #customerStoriesCarousel .carousel-item { padding: 0; }
    #customerStoriesCarousel .card-image { width: 80px; height: 80px;}

    .footer-custom .row > div {
        margin-bottom: var(--space-lg);
    }
    .footer-custom .row > div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) { /* Extra small devices (portrait phones, less than 576px) */
    .section-title { margin-bottom: var(--space-md); }
    #hero h1 { font-size: 1.9rem; }
    #hero p.lead { font-size: 0.95rem; }
}