/* Global Styles & CSS Variables */
:root {
    /* Color Palette - Bright Red Theme */
    --primary-color: #FF3B3F; /* Vibrant Red */
    --primary-color-dark: #D72E33;
    --primary-color-light: #FF6B6E;
    --primary-color-shadow-dark: #C22327; /* For red button shadows */
    --primary-color-shadow-light: #FF8A8C; /* For red button highlights */

    --secondary-color: #007AFF; /* Bright Blue as secondary */
    --accent-color: #FF9500; /* Bright Orange as accent */
    --accent-color-dark: #F5820C;

    --text-color: #333333; /* Dark grey for readability */
    --text-color-medium: #555555;
    --text-color-light: #FFFFFF; /* White for dark backgrounds */

    --bg-color: #F0F2F5; /* Light, slightly cool grey for neumorphism base */
    --bg-color-light-section: #FFFFFF; /* White for some sections */
    --card-bg-color: var(--bg-color);

    --border-color: #D1D9E6;
    --link-color: var(--primary-color);
    --link-hover-color: var(--primary-color-dark);

    /* Neumorphism Shadows on --bg-color */
    --neumorph-shadow-color-light: #FFFFFF;
    --neumorph-shadow-color-dark: #B8C1D1;
    --neumorph-offset: 8px;
    --neumorph-blur: 16px;

    --neumorph-shadow-convex:
        var(--neumorph-offset) var(--neumorph-offset) var(--neumorph-blur) var(--neumorph-shadow-color-dark),
        calc(var(--neumorph-offset) * -1) calc(var(--neumorph-offset) * -1) var(--neumorph-blur) var(--neumorph-shadow-color-light);
    --neumorph-shadow-concave:
        inset var(--neumorph-offset) var(--neumorph-offset) var(--neumorph-blur) var(--neumorph-shadow-color-dark),
        inset calc(var(--neumorph-offset) * -1) calc(var(--neumorph-offset) * -1) var(--neumorph-blur) var(--neumorph-shadow-color-light);
    
    /* Button specific neumorphism */
    --btn-neumorph-offset: 6px;
    --btn-neumorph-blur: 12px;

    --btn-neumorph-shadow-convex:
        var(--btn-neumorph-offset) var(--btn-neumorph-offset) var(--btn-neumorph-blur) var(--neumorph-shadow-color-dark),
        calc(var(--btn-neumorph-offset) * -1) calc(var(--btn-neumorph-offset) * -1) var(--btn-neumorph-blur) var(--neumorph-shadow-color-light);
    --btn-neumorph-shadow-concave:
        inset var(--btn-neumorph-offset) var(--btn-neumorph-offset) var(--btn-neumorph-blur) var(--neumorph-shadow-color-dark),
        inset calc(var(--btn-neumorph-offset) * -1) calc(var(--btn-neumorph-offset) * -1) var(--btn-neumorph-blur) var(--neumorph-shadow-color-light);


    /* Typography */
    --font-family-headings: 'Inter', sans-serif;
    --font-family-body: 'IBM Plex Sans', sans-serif;
    --base-font-size: 16px;
    --line-height-base: 1.7;
    --line-height-heading: 1.3;
    --header-height: 80px;
}

/* Basic Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--base-font-size);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Responsive Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    font-weight: 800;
    line-height: var(--line-height-heading);
    color: var(--text-color); /* Default dark color for headings */
    margin-bottom: 0.75em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
p {
    margin-bottom: 1.25rem;
    font-weight: 400;
    color: var(--text-color-medium);
}
strong { font-weight: 700; }

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

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

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.main-container {
    overflow-x: hidden; /* Prevents horizontal scroll from animations */
}

.content-section {
    padding: 60px 0; /* Natural height, adjust padding as needed */
}
.content-section.bg-light {
    background-color: var(--bg-color-light-section);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #222222; /* Ensure high contrast for section titles */
}
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: var(--text-color-medium);
}

.highlight-red {
    color: var(--primary-color);
}

/* Grid Layouts */
.grid-container-2cols,
.grid-container-3cols {
    display: grid;
    gap: 30px;
}
.grid-container-2cols { grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)); }
.grid-container-3cols { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }


/* Global Button Styles */
.btn, button[type="submit"] {
    display: inline-block;
    font-family: var(--font-family-headings);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 50px; /* Rounded for modern feel */
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--btn-neumorph-shadow-convex);
    background-color: var(--bg-color); /* Default neumorphic button bg */
    color: var(--text-color);
}

.btn:hover, button[type="submit"]:hover {
    transform: translateY(-2px);
    /* Slightly enhance shadows on hover */
    box-shadow: var(--btn-neumorph-offset) var(--btn-neumorph-offset) calc(var(--btn-neumorph-blur) + 4px) var(--neumorph-shadow-color-dark),
                calc(var(--btn-neumorph-offset) * -1) calc(var(--btn-neumorph-offset) * -1) calc(var(--btn-neumorph-blur) + 4px) var(--neumorph-shadow-color-light);
}

.btn:active, button[type="submit"]:active {
    transform: translateY(1px);
    box-shadow: var(--btn-neumorph-shadow-concave);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    box-shadow: var(--btn-neumorph-offset) var(--btn-neumorph-offset) var(--btn-neumorph-blur) var(--primary-color-shadow-dark),
                calc(var(--btn-neumorph-offset) * -1) calc(var(--btn-neumorph-offset) * -1) var(--btn-neumorph-blur) var(--primary-color-shadow-light);
}
.btn-primary:hover {
    background-color: var(--primary-color-light); /* Lighten on hover */
    box-shadow: var(--btn-neumorph-offset) var(--btn-neumorph-offset) calc(var(--btn-neumorph-blur) + 4px) var(--primary-color-shadow-dark),
                calc(var(--btn-neumorph-offset) * -1) calc(var(--btn-neumorph-offset) * -1) calc(var(--btn-neumorph-blur) + 4px) var(--primary-color-shadow-light);
}
.btn-primary:active {
    background-color: var(--primary-color-dark);
    box-shadow: inset var(--btn-neumorph-offset) var(--btn-neumorph-offset) var(--btn-neumorph-blur) var(--primary-color-shadow-dark),
                inset calc(var(--btn-neumorph-offset) * -1) calc(var(--btn-neumorph-offset) * -1) var(--btn-neumorph-blur) var(--primary-color-shadow-light);
}

.btn-secondary {
    background-color: var(--bg-color);
    color: var(--primary-color); /* Text color is primary */
    border: 2px solid var(--primary-color); /* Optional: outline style secondary */
    box-shadow: none; /* Or different shadow style */
}
.btn-secondary:hover {
    background-color: var(--primary-color-light);
    color: var(--text-color-light);
    border-color: var(--primary-color-light);
    box-shadow: var(--btn-neumorph-shadow-convex); /* Add neumorphic shadow on hover */
}
.btn-secondary:active {
    background-color: var(--primary-color-dark);
    box-shadow: var(--btn-neumorph-shadow-concave);
}


/* Global Form Styles */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-family: var(--font-family-body);
    font-weight: 500;
    color: var(--text-color-medium);
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--bg-color);
    border: 1px solid transparent; /* To maintain layout, hide default */
    border-radius: 10px;
    box-shadow: var(--btn-neumorph-shadow-concave); /* Inset shadow for inputs */
    transition: box-shadow 0.3s ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="password"]:focus,
.form-group textarea:focus {
    outline: none;
    /* Slightly alter shadow on focus to indicate active state */
    box-shadow: inset 3px 3px 7px #c5cdd9, inset -3px -3px 7px #ffffff, 0 0 0 2px var(--primary-color-light);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}


/* Card Styles */
.card { height:auto;
    background-color: var(--card-bg-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--neumorph-shadow-convex);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text */
    height: 100%; /* For equal height cards in a grid */
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: calc(var(--neumorph-offset) + 4px) calc(var(--neumorph-offset) + 4px) calc(var(--neumorph-blur) + 8px) var(--neumorph-shadow-color-dark),
                calc( (var(--neumorph-offset) + 4px) * -1) calc( (var(--neumorph-offset) + 4px) * -1) calc(var(--neumorph-blur) + 8px) var(--neumorph-shadow-color-light);
}
.card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden; /* Ensures image fits within rounded corners */
    background-color: #e0e0e0; /* Placeholder bg */
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop image to fit container */
    display: block; /* Remove extra space below image */
}
.card-content {
    width: 100%;
}
.card-content h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
}
.card-content p {
    font-size: 0.95rem;
    color: var(--text-color-medium);
    flex-grow: 1; /* Allows p to take space if card is flex container */
}
.card .btn, .card button {
    margin-top: auto; /* Push button to bottom if card is flex and has varying content height */
}


/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(240, 242, 245, 0.85); /* Semi-transparent --bg-color */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 0;
    height: var(--header-height);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo {
    font-family: var(--font-family-headings);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    text-decoration: none;
}
.logo-accent {
    color: var(--primary-color);
}
.main-navigation .nav-list {
    list-style: none;
    display: flex;
}
.main-navigation .nav-list li {
    margin-left: 30px;
}
.main-navigation .nav-link {
    font-family: var(--font-family-body);
    font-weight: 500;
    color: var(--text-color-medium);
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}
.main-navigation .nav-link:hover,
.main-navigation .nav-link.active {
    color: var(--primary-color);
}
.main-navigation .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.main-navigation .nav-link:hover::after,
.main-navigation .nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-color);
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}


/* Section Specific Styles */

/* Hero Section */
.hero-section {
    color: var(--text-color-light);
    padding: 150px 0 100px; /* Adjust padding for content */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    min-height: 70vh; /* Ensure it's substantial */
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content h1 {
    color: var(--text-color-light);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}
.hero-content .hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.btn-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* History Section (Timeline) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after { /* The central line */
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 30px; /* Space between items */
}
.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }

.timeline-item .timeline-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--bg-color-light-section);
    border: 4px solid var(--primary-color);
    top: 20px; /* Adjust to align with card content */
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-icon {
    right: -10px; /* (20/2) */
}
.timeline-item:nth-child(even) .timeline-icon {
    left: -10px; /* (20/2) */
}
.timeline-content { /* This is the .card */
    position: relative;
    padding: 20px; /* Padding is already in .card */
}
.timeline-item:nth-child(even) .timeline-content { /* Arrow for even items */
    /* Create triangle if needed, or rely on card styling */
}
.timeline-item:nth-child(odd) .timeline-content { /* Arrow for odd items */
    /* Create triangle if needed */
}

/* Behind The Scenes (Custom Slider) */
.custom-slider {
    position: relative;
    overflow: hidden;
}
.slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    box-sizing: border-box;
    opacity: 0.5;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide.active {
    opacity: 1;
    transform: scale(1);
}
.slide-controls {
    text-align: center;
    margin-top: 20px;
}
.slide-controls button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: none; /* Override global button neumorphism if not desired here */
}
.slide-controls button:hover {
    background-color: var(--primary-color-dark);
}

/* Partners Section */
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.partner-logo.card { height:auto;
    padding: 20px; /* Ensure padding consistent */
    background-color: var(--bg-color-light-section); /* If section is colored */
    flex: 0 1 180px; /* Flex properties for sizing */
    height: 120px; /* Consistent height */
    display: flex;
    justify-content: center;
    align-items: center;
}
.partner-logo img {
    max-width: 100%;
    max-height: 60px; /* Control logo size */
    object-fit: contain;
}

/* Media Section */
.media .card h3 {
    font-size: 1.3rem;
}
.text-link { /* For "Read more", "Listen now" */
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}
.text-link:hover {
    color: var(--accent-color-dark);
    text-decoration: underline;
}

/* Pricing Section */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.pricing-toggle-container span {
    margin: 0 15px;
    font-weight: 500;
    color: var(--text-color-medium);
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input { display: none; }
.slider-round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    box-shadow: var(--btn-neumorph-shadow-concave);
}
.slider-round:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: var(--btn-neumorph-shadow-convex);
}
input:checked + .slider-round {
    background-color: var(--primary-color);
}
input:checked + .slider-round:before {
    transform: translateX(26px);
}
.pricing-card {
    text-align: center;
    border: 2px solid transparent;
}
.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 59, 63, 0.2); /* Red glow */
    transform: scale(1.05); /* Make it stand out */
}
.popular-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.pricing-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-color);
}
.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}
.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.features-list li {
    margin-bottom: 10px;
    color: var(--text-color-medium);
}
.features-list li::before {
    content: '✔'; /* Or custom icon */
    color: var(--primary-color);
    margin-right: 8px;
}

/* External Resources Section */
.external-links-list {
    list-style: none;
    padding: 0;
}
.external-links-list li.card { height:auto;
    margin-bottom: 20px;
    text-align: left; /* Override card's text-align if needed for list items */
    align-items: flex-start; /* Override card's align-items if needed */
}
.external-links-list h4 a {
    color: var(--primary-color);
    font-size: 1.2rem;
}
.external-links-list p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section .section-intro {
    margin-bottom: 50px;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 2fr 1fr; /* Form takes more space */
    }
}
.contact-form-container.card,
.contact-info-container .card { height:auto;
    padding: 30px; /* More padding for contact cards */
}
.contact-info-container h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}
.contact-info-container p {
    margin-bottom: 10px;
}
.contact-info-container p strong {
    color: var(--text-color);
}
.map-placeholder img {
    border-radius: 10px;
    border: 3px solid var(--bg-color-light-section); /* If map is on colored bg */
    box-shadow: var(--neumorph-shadow-convex);
}


/* Footer */
.site-footer {
    background-color: #2C3A47; /* Dark background for footer */
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0 0;
    font-size: 0.9rem;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.footer-column h4 {
    font-size: 1.3rem;
    color: var(--text-color-light);
    margin-bottom: 20px;
}
.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-column ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.social-links-footer li a {
    display: inline-block; /* For better hover effect */
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}


/* Specific Page Styles */
.static-page-content { /* For privacy.html, terms.html main content */
    padding-top: calc(var(--header-height) + 40px); /* Header height + extra space */
    padding-bottom: 60px;
    background-color: var(--bg-color-light-section);
}
.static-page-content .container h1 {
    margin-bottom: 30px;
    color: var(--primary-color);
}
.static-page-content .container p,
.static-page-content .container ul,
.static-page-content .container ol {
    margin-bottom: 20px;
}
.static-page-content .container ul,
.static-page-content .container ol {
    padding-left: 25px;
}

/* success.html */
.success-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 30px;
    background-color: var(--bg-color);
}
.success-page-container .card { height:auto;
    max-width: 600px;
    width: 100%;
}
.success-page-container h1 {
    color: var(--primary-color);
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 20px;
}
.success-page-container p {
    font-size: 1.1rem;
    color: var(--text-color-medium);
    margin-bottom: 30px;
}
.success-page-container .btn {
    margin-top: 10px;
}


/* ScrollReveal - Initial hidden states (can be managed by JS too) */
/* Animate.css classes will be added by ScrollReveal.js as per HTML */
.sr-bottom, .sr-left, .sr-right, .sr-top, .sr-fade { /* Generic class for elements to be revealed */
    visibility: hidden; /* Initially hidden, ScrollReveal makes them visible */
}
.contacts .sr-left{
    visibility: visible;
}
/* Cookie Consent Popup (from HTML, ensure it fits) */
#cookieConsentPopup a {
    color: var(--primary-color) !important; /* Ensure link is primary color */
}
#cookieConsentPopup button#acceptCookieConsent {
    background-color: var(--primary-color) !important;
}
#cookieConsentPopup button#acceptCookieConsent:hover {
    background-color: var(--primary-color-dark) !important;
}
#cookieConsentPopup button#closeCookieConsent:hover {
    background-color: rgba(204, 204, 204, 0.2) !important;
    color: #fff !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) { /* Tablet */
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon { left: 10px; } /* (31 - 20/2 - 4) */
}

@media (max-width: 768px) { /* Mobile */
    :root {
        --header-height: 70px;
    }
    .menu-toggle { display: block; }
    .main-navigation .nav-list {
        display: none; /* JS will toggle to flex */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Below header */
        left: 0;
        width: 100%;
        background-color: var(--bg-color-light-section);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 15px 0;
        border-top: 1px solid var(--border-color);
    }
    .main-navigation .nav-list.active { display: flex; }
    .main-navigation .nav-list li {
        margin: 0;
        width: 100%;
    }
    .main-navigation .nav-link {
        display: block;
        padding: 12px 20px;
        text-align: center;
        width: 100%;
    }
    .main-navigation .nav-link::after { display: none; } /* Remove underline on mobile */
    .main-navigation .nav-link:hover,
    .main-navigation .nav-link.active {
        background-color: var(--primary-color-light);
        color: var(--text-color-light);
    }

    .hero-section { padding: 120px 0 80px; min-height: 60vh; }
    .hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-content .hero-subtitle { font-size: 1.1rem; }

    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-column ul { display: flex; flex-direction: column; align-items: center; }
    
    .content-section { padding: 50px 0; }
    .section-title { margin-bottom: 30px; }
    .section-intro { margin-bottom: 30px; font-size: 1rem; }

    .pricing-toggle-container { flex-direction: column; }
    .pricing-toggle-container span { margin: 10px 0; }

    .contact-wrapper { grid-template-columns: 1fr; }
}