/* Variables and Base Styles */
:root {
    /* Triadic Color Scheme */
    --primary-color: #0055A4; /* YPF Blue */
    --secondary-color: #FF3D00; /* Bright orange (complementary) */
    --tertiary-color: #2C9F45; /* Green (triadic) */
    
    /* Neutral and supporting colors */
    --dark-blue: #003366;
    --light-blue: #4D88CC;
    --dark-orange: #CC3000;
    --light-orange: #FF7F50;
    --dark-green: #1A6F2F;
    --light-green: #5ABA73;
    
    /* Text colors */
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #FFFFFF;
    --text-muted: #777777;
    
    /* Background colors */
    --bg-light: #FFFFFF;
    --bg-off-white: #F9F9F9;
    --bg-light-gray: #F0F0F0;
    --bg-dark: #1A1A1A;
    
    /* Border colors */
    --border-light: #E0E0E0;
    --border-medium: #CCCCCC;
    
    /* Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    /* Animation speeds */
    --transition-fast: 0.2s;
    --transition-medium: 0.3s;
    --transition-slow: 0.5s;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Container widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-md);
}

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

a:hover {
    color: var(--dark-blue);
}

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

.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    color: var(--text-dark);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: var(--space-sm) auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-top: -1.5rem;
    margin-bottom: var(--space-lg);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium) ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width var(--transition-medium) ease;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--dark-orange);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-tertiary {
    background-color: var(--tertiary-color);
    color: var(--text-light);
}

.btn-tertiary:hover {
    background-color: var(--dark-green);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Form Styles */
input, 
textarea, 
select {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: border-color var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

input:focus, 
textarea:focus, 
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 85, 164, 0.2);
}

textarea {
    resize: vertical;
}

label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: var(--space-md);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: var(--space-sm);
}

.checkbox-group label {
    margin-bottom: 0;
}

button, 
input[type="submit"] {
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-medium) ease;
    box-shadow: var(--shadow-md);
}

button:hover, 
input[type="submit"]:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) 0;
    transition: all var(--transition-medium) ease;
}

#header.scrolled {
    padding: var(--space-sm) 0;
    background-color: rgba(255, 255, 255, 0.98);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo a {
    display: block;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav li {
    margin: 0 var(--space-md);
}

.desktop-nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: var(--space-xs) 0;
}

.desktop-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-medium) ease;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

.desktop-nav a:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 2px;
    width: 100%;
    background-color: var(--text-dark);
    transition: all var(--transition-medium) ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--bg-light);
    overflow: hidden;
    transition: height var(--transition-medium) ease;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.mobile-menu.active {
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu ul {
    list-style: none;
    padding: var(--space-xl) var(--space-lg);
}

.mobile-menu li {
    margin-bottom: var(--space-lg);
}

.mobile-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--space-xxl) 0;
    margin-top: 0;
    color: var(--text-light);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1.5s ease;
}

.hero-content h1, 
.hero-content h2, 
.hero-content p {
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: var(--space-lg);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
}

/* Mission Section */
.mission-section {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-light);
}

.mission-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.mission-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-medium) ease;
}

.image-container:hover {
    transform: scale(1.02);
}

.mission-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow) ease;
}

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

.mission-text {
    flex: 1;
}

.mission-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.mission-text p {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

/* Community Section */
.community-section {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-off-white);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.card-content {
    padding: var(--space-lg);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.feature {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium) ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin: 0 auto var(--space-md);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-medium) ease;
}

.feature:hover .feature-icon img {
    transform: scale(1.1) rotate(5deg);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

/* Resources Section */
.resources-section {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.resource-card {
    background-color: var(--bg-off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card .card-content {
    padding: var(--space-lg);
    text-align: center;
}

.resource-link {
    display: inline-block;
    margin-top: var(--space-md);
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.resource-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium) ease;
}

.resource-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Team Section */
.team-section {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.team-card {
    text-align: center;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card .card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.team-card .card-content {
    padding: var(--space-lg);
}

.position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

/* Careers Section */
.careers-section {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-light);
}

.careers-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.careers-text {
    flex: 3;
}

.careers-text h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.careers-image {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.careers-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-medium) ease;
}

.careers-image img:hover {
    transform: scale(1.02);
}

.careers-benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: var(--space-lg) 0;
}

.benefit {
    flex: 1;
    min-width: 150px;
    margin: var(--space-md);
    text-align: center;
}

.benefit-icon {
    margin: 0 auto var(--space-sm);
    width: 60px;
    height: 60px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-medium) ease;
}

.benefit:hover .benefit-icon img {
    transform: scale(1.1) rotate(5deg);
}

.benefit h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-off-white);
}

.contact-content {
    display: flex;
    gap: var(--space-xl);
}

.contact-info {
    flex: 1;
}

.contact-form-container {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.contact-details {
    margin: var(--space-lg) 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.contact-icon {
    margin-right: var(--space-md);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-item h4 {
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-medium);
}

.contact-hours h4 {
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.contact-hours p {
    color: var(--text-medium);
}

.contact-form {
    background-color: var(--bg-light);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* Gallery Section */
.gallery-section {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 300px;
    transition: transform var(--transition-medium) ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow) ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
#footer {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    margin-bottom: var(--space-md);
}

.footer-logo p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 150px;
    margin-bottom: var(--space-lg);
}

.footer-column h4 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-xs);
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-column li {
    margin-bottom: var(--space-sm);
}

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

.footer-column a:hover {
    color: var(--text-light);
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h4 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-xs);
}

.footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast) ease, transform var(--transition-fast) ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--text-light);
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: background-color var(--transition-fast) ease;
}

.btn-cookie:hover {
    background-color: var(--dark-orange);
}

/* Success Page */
.success-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: var(--space-xl);
}

.success-container {
    max-width: 600px;
    padding: var(--space-xl);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1s ease;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
}

.success-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.success-container h1 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.success-container p {
    margin-bottom: var(--space-lg);
}

/* About, Privacy, Terms pages */
.page-content {
    padding: 100px 0 var(--space-xxl);
}

.page-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
}

.page-title {
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

.page-section {
    margin-bottom: var(--space-xl);
}

.page-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.page-section h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-up {
    animation: fadeInUp 1s ease;
}

/* Media Queries */
@media (max-width: 1200px) {
    :root {
        --container-xl: 960px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    :root {
        --container-lg: 720px;
    }
    
    .mission-content, 
    .careers-content, 
    .contact-content {
        flex-direction: column;
    }
    
    .mission-image, 
    .careers-image {
        margin-bottom: var(--space-lg);
    }
    
    .contact-info {
        margin-bottom: var(--space-xl);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-md: 540px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .footer-links {
        width: 100%;
    }
}

@media (max-width: 576px) {
    :root {
        --container-sm: 100%;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto var(--space-sm);
    }
    
    .footer-column {
        width: 100%;
    }
}