/* ===== VARIABLES ===== */
:root {
    /* Primary Colors - Split Complementary */
    --primary-color: #0055a4; /* YPF Blue */
    --primary-dark: #003b73;
    --primary-light: #2175c4;
    --secondary-color: #e63312; /* YPF Red */
    --secondary-dark: #c12810;
    --secondary-light: #f45438;
    --accent-color: #ffc72c; /* YPF Yellow/Gold */
    --accent-dark: #e5b325;
    --accent-light: #ffd454;
    
    /* Neutral Colors */
    --dark: #222222;
    --medium-dark: #444444;
    --medium: #666666;
    --medium-light: #888888;
    --light: #eeeeee;
    --white: #ffffff;
    
    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-medium: #f0f2f5;
    --bg-dark: #343a40;
    
    /* Neomorphism Variables */
    --neo-bg: #f0f2f5;
    --neo-shadow-dark: rgba(163, 177, 198, 0.6);
    --neo-shadow-light: rgba(255, 255, 255, 0.9);
    --neo-radius: 15px;
    --neo-depth: 6px;
    
    /* Typography */
    --heading-font: 'Archivo Black', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --base-font-size: 16px;
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.75rem;
    --h4-size: 1.5rem;
    --h5-size: 1.25rem;
    --h6-size: 1rem;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Z-index layers */
    --z-back: -1;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--body-font);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

h5 {
    font-size: var(--h5-size);
}

h6 {
    font-size: var(--h6-size);
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

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

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

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

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

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

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* ===== NEOMORPHIC STYLES ===== */
.neomorphic-card {
    background: var(--neo-bg);
    border-radius: var(--neo-radius);
    box-shadow: 
        var(--neo-depth) var(--neo-depth) calc(var(--neo-depth) * 2) var(--neo-shadow-dark),
        calc(var(--neo-depth) * -1) calc(var(--neo-depth) * -1) calc(var(--neo-depth) * 2) var(--neo-shadow-light);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    overflow: hidden;
}

.neomorphic-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        calc(var(--neo-depth) + 2px) calc(var(--neo-depth) + 2px) calc(var(--neo-depth) * 2.5) var(--neo-shadow-dark),
        calc((var(--neo-depth) + 2px) * -1) calc((var(--neo-depth) + 2px) * -1) calc(var(--neo-depth) * 2.5) var(--neo-shadow-light);
}

.neomorphic-button {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    box-shadow: 
        4px 4px 8px var(--neo-shadow-dark),
        -4px -4px 8px var(--neo-shadow-light),
        inset 0 0 0 rgba(255, 255, 255, 0);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.neomorphic-button:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 
        6px 6px 12px var(--neo-shadow-dark),
        -6px -6px 12px var(--neo-shadow-light),
        inset 0 0 0 rgba(255, 255, 255, 0);
}

.neomorphic-button:active {
    transform: translateY(0);
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.2),
        inset -4px -4px 8px rgba(255, 255, 255, 0.1);
}

.neomorphic-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-medium);
    z-index: -1;
}

.neomorphic-button:hover::before {
    left: 100%;
}

.neomorphic-button-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.neomorphic-button-outline:hover {
    color: var(--white);
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.neomorphic-input {
    background-color: var(--bg-light);
    border: none;
    border-radius: var(--neo-radius);
    padding: 12px 20px;
    box-shadow: 
        inset 4px 4px 8px var(--neo-shadow-dark),
        inset -4px -4px 8px var(--neo-shadow-light);
    transition: all var(--transition-fast);
}

.neomorphic-input:focus {
    outline: none;
    box-shadow: 
        inset 6px 6px 10px var(--neo-shadow-dark),
        inset -6px -6px 10px var(--neo-shadow-light),
        0 0 0 3px rgba(0, 85, 164, 0.1);
}

.neomorphic-header {
    background-color: var(--neo-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
}

.neomorphic-accordion .accordion-button {
    background-color: var(--neo-bg);
    box-shadow: none;
    color: var(--dark);
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: var(--neo-radius);
}

.neomorphic-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(0, 85, 164, 0.05);
}

.neomorphic-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230055a4'%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");
}

.neomorphic-map {
    border-radius: var(--neo-radius);
    overflow: hidden;
    box-shadow: 
        var(--neo-depth) var(--neo-depth) calc(var(--neo-depth) * 2) var(--neo-shadow-dark),
        calc(var(--neo-depth) * -1) calc(var(--neo-depth) * -1) calc(var(--neo-depth) * 2) var(--neo-shadow-light);
}

.neomorphic-image {
    border-radius: var(--neo-radius);
    transition: transform var(--transition-medium);
}

.neomorphic-image:hover {
    transform: scale(1.03);
}

/* ===== HEADER STYLES ===== */
.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 60px;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 5px;
    transition: all var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(0, 85, 164, 0.08);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/ypf-station-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.hero-image-container {
    position: relative;
    border-radius: var(--neo-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 5rem 0;
}

.mission-image-container {
    overflow: hidden;
    margin-bottom: 2rem;
}

.mission-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-content p {
    margin-bottom: 1.5rem;
}

/* ===== PORTFOLIO/ESTACIONES SECTION ===== */
.portfolio-section {
    padding: 5rem 0;
}

.portfolio-section .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-section .card-image {
    width: 100%;
    overflow: hidden;
    border-top-left-radius: var(--neo-radius);
    border-top-right-radius: var(--neo-radius);
}

.portfolio-section .image-container {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.portfolio-section .card:hover .image-container img {
    transform: scale(1.05);
}

.portfolio-section .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-section .card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.portfolio-section .card-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* ===== METHODOLOGY SECTION ===== */
.methodology-section {
    padding: 5rem 0;
}

.methodology-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.methodology-stats {
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.methodology-image-container {
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
    padding: 5rem 0;
}

.resource-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card .card-image {
    width: 100%;
    overflow: hidden;
    border-top-left-radius: var(--neo-radius);
    border-top-right-radius: var(--neo-radius);
}

.resource-card .image-container {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.resource-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.resource-card .card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card .card-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* ===== CUSTOMER STORIES SECTION ===== */
.customer-stories-section {
    padding: 5rem 0;
}

.custom-slider {
    position: relative;
    padding: 3rem;
}

.story-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-occupation {
    color: var(--medium);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.story-rating {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    margin: 0 5px;
}

.carousel-indicators button.active {
    opacity: 1;
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies-section {
    padding: 5rem 0;
}

.case-studies-section .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-studies-section .card-image {
    width: 100%;
    overflow: hidden;
    border-top-left-radius: var(--neo-radius);
    border-top-right-radius: var(--neo-radius);
}

.case-studies-section .image-container {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-studies-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.case-studies-section .card:hover .image-container img {
    transform: scale(1.05);
}

.case-studies-section .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-studies-section .card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.case-studies-section .card-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* ===== MEDIA SECTION ===== */
.media-section {
    padding: 5rem 0;
}

.media-timeline {
    position: relative;
}

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

.media-date {
    min-width: 80px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.media-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.media-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--medium-dark);
}

.media-date .year {
    font-size: 0.8rem;
    color: var(--medium);
}

.media-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.media-content p {
    margin-bottom: 1rem;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 5rem 0;
}

.blog-section .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-section .card-image {
    width: 100%;
    overflow: hidden;
    border-top-left-radius: var(--neo-radius);
    border-top-right-radius: var(--neo-radius);
}

.blog-section .image-container {
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.blog-section .card:hover .image-container img {
    transform: scale(1.05);
}

.blog-section .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--medium);
    font-size: 0.9rem;
}

.blog-section .card-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    min-height: 3rem;
}

.blog-section .card-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.blog-section .btn-outline-primary {
    align-self: flex-start;
}

/* ===== CAREERS SECTION ===== */
.careers-section {
    padding: 5rem 0;
}

.careers-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.careers-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.careers-benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.careers-benefits li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.careers-image-container {
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.contact-icon {
    min-width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-map {
    margin-top: 2rem;
}

.contact-form form {
    margin-top: 1.5rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background-color: var(--bg-dark);
    color: var(--white);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-brand img {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    opacity: 0.8;
    max-width: 400px;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-social {
    margin-top: 2rem;
}

.footer-social p {
    margin-bottom: 0.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 1.5rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-divider {
    margin: 3rem 0 2rem;
    opacity: 0.2;
}

.footer-bottom {
    opacity: 0.7;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(34, 34, 34, 0.95);
    padding: 1rem;
    z-index: var(--z-modal);
    display: none;
}

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

.cookie-content p {
    color: var(--white);
    margin-bottom: 0;
    margin-right: 2rem;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-content button {
    white-space: nowrap;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-content {
    text-align: center;
    max-width: 600px;
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.success-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== PRIVACY & TERMS PAGES ===== */
.page-content {
    padding-top: 100px;
    padding-bottom: 5rem;
}

.page-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.page-content h2 {
    color: var(--primary-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content ul, 
.page-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        /*opacity: 0;*/
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        /*opacity: 0;*/
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        /*opacity: 0;*/
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        /*opacity: 0;*/
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-aos="fade-up"] {
    /*opacity: 0;*/
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
    /*opacity: 0;*/
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"] {
    /*opacity: 0;*/
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"] {
    /*opacity: 0;*/
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="flip-left"] {
    /*opacity: 0;*/
    transform: rotateY(25deg);
    perspective: 2000px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1199.98px) {
    :root {
        --h1-size: 3rem;
        --h2-size: 2.25rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --h1-size: 2.75rem;
        --h2-size: 2rem;
        --h3-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-section {
        padding: 6rem 0;
    }
    
    .navbar-collapse {
        background-color: var(--neo-bg);
        padding: 1rem;
        border-radius: var(--neo-radius);
        margin-top: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .mission-section,
    .portfolio-section,
    .methodology-section,
    .resources-section,
    .customer-stories-section,
    .case-studies-section,
    .media-section,
    .blog-section,
    .careers-section,
    .contact-section {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 1.75rem;
        --h3-size: 1.35rem;
        --base-font-size: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 5rem 0;
    }
    
    .divider {
        width: 50px;
        height: 3px;
    }
    
    .methodology-stats {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .custom-slider {
        padding: 2rem 1rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    :root {
        --h1-size: 2.25rem;
        --h2-size: 1.6rem;
        --h3-size: 1.25rem;
        --base-font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .mission-section,
    .portfolio-section,
    .methodology-section,
    .resources-section,
    .customer-stories-section,
    .case-studies-section,
    .media-section,
    .blog-section,
    .careers-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .divider {
        width: 40px;
        height: 3px;
        margin-bottom: 1.5rem;
    }
}
h2{
    color: #003b73;
}