body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
    margin: 0; 
    color: #333; 
    line-height: 1.6;
    font-size: 16px;
}

/* Lazy loading styles */
img.lazy {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

img.lazy-loaded {
    opacity: 1;
}

/* Responsive image optimization */
.responsive-image {
    width: 100%;
    height: auto;
    max-width: 400px;
}

@media (max-width: 768px) {
    .responsive-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .responsive-image {
        max-width: 250px;
    }
}

/* Image optimization settings */
img {
    max-width: 100%;
    height: auto;
}

.facility-image, .gallery-image, .team-member img {
    transition: transform 0.3s ease;
    will-change: transform;
}

/* Reduce hero background size on mobile for faster loading */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Prevents background-attachment issues on mobile */
    }
}
.navbar { 
    background: rgba(33, 33, 33, 0.95); 
    backdrop-filter: blur(10px);
    padding: 1rem; 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000; 
    border-bottom: 2px solid #c62828;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(33, 33, 33, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar .nav-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 20px;
}
.navbar img { height: 55px; }
.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 2.5rem; 
    margin: 0; 
    padding: 0; 
}
.nav-menu a { 
    color: white; 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.95rem;
    transition: color 0.3s; 
    letter-spacing: 0.3px;
}
.nav-menu a:hover { color: #c62828; }
.hero { 
    background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(198, 40, 40, 0.8)), url('images/hero-bg.jpg'); 
    background-size: cover; 
    background-position: center; 
    color: white; 
    padding: 150px 20px 100px; 
    text-align: center; 
}

/* WebP support for hero background */
.webp .hero {
    background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(198, 40, 40, 0.8)), url('images/hero-bg.webp');
}
.hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 1.5rem; 
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: 1.4rem;
    color: #ff6f00;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: white;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6f00;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}
.cta-primary {
    background: #c62828;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #c62828;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
}
.cta-primary:hover {
    background: white;
    color: #c62828;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(198, 40, 40, 0.4);
}
.cta-secondary {
    background: transparent;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid white;
}
.cta-secondary:hover {
    background: white;
    color: #1a237e;
    transform: translateY(-3px);
}
/* Global Typography */
h2 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    line-height: 1.3;
}
h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #c62828;
    border-radius: 2px;
}
h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 1rem;
    line-height: 1.4;
}
p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
}

.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Value Proposition Section */
.value-prop {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(26, 35, 126, 0.8)), url('images/facility-exterior-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}
.value-prop h2 {
    color: white;
}
.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(255, 255, 255, 0.03) 100px,
        rgba(255, 255, 255, 0.03) 200px
    );
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}
.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #c62828);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.value-card:hover::before {
    transform: scaleX(1);
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.value-card .value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #c62828 !important;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.value-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}
.value-prop .value-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}
.value-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}
.value-card:hover .value-image {
    transform: scale(1.05);
}

/* About Story Section */
.about-story {
    background: white;
}
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}
.story-text h3 {
    color: #1a237e;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    font-weight: 600;
}
.story-text h3:first-child {
    margin-top: 0;
}
.story-text p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.company-highlights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}
.highlight-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    color: #333;
}
.highlight-item:last-child {
    border-bottom: none;
}
.story-visual {
    text-align: center;
}
.story-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: white;
    padding: 1.5rem;
}
.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Facilities Showcase Section */
.facilities-showcase {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf6 100%);
    position: relative;
}
.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    max-width: 650px;
    margin: 1rem auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.facility-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}
.facility-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}
.facility-item:hover .facility-image {
    transform: scale(1.05);
}
.facility-item:first-child .facility-image {
    transform: rotate(90deg) scale(1.4);
    transform-origin: center center;
}
.facility-item:nth-child(2) .facility-image {
    transform: rotate(90deg) scale(1.4);
    transform-origin: center center;
}
.facility-item:first-child:hover .facility-image {
    transform: rotate(90deg) scale(1.5);
}
.facility-item:nth-child(2):hover .facility-image {
    transform: rotate(90deg) scale(1.5);
}
.facility-info {
    padding: 1.5rem;
}
.facility-info h3 {
    color: #1a237e;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}
.facility-info p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Facility Gallery */
.facility-gallery {
    text-align: center;
    margin-top: 3rem;
}
.facility-gallery h3 {
    color: #1a237e;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}
.gallery-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.services { 
    background: #212121; 
    color: white; 
}
.services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.services h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}
#services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.service-card {
    background: linear-gradient(135deg, #37474f 0%, #455a64 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #546e7a;
    position: relative;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.service-card:hover .service-photo {
    transform: scale(1.1);
}
.service-info {
    padding: 2.5rem;
}
.service-info h3 {
    color: #ff6f00;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}
.service-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.service-info li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255,255,255,0.9);
}
.service-info li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: bold;
}
.service-info li:last-child {
    border-bottom: none;
}
.service-link {
    display: inline-block;
    color: #c62828;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 2px solid #c62828;
    padding-bottom: 2px;
}
.service-link:hover {
    color: #ff6f00;
    border-bottom-color: #ff6f00;
    transform: translateX(5px);
}
.service-category { 
    background: linear-gradient(135deg, #37474f 0%, #455a64 100%);
    padding: 2.5rem; 
    border-radius: 15px;
    transition: all 0.3s ease; 
    border: 1px solid #546e7a;
    position: relative;
    overflow: hidden;
}
.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #c62828;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}
.service-category:hover::before {
    transform: scaleY(1);
}
.service-category:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-category h3 { 
    color: #ff6f00;
    margin-bottom: 1.5rem; 
    font-size: 1.5rem;
    font-weight: 700;
}
.service-category h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.service-category h3 a:hover { 
    color: #ffab40; 
}
.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-category li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}
.service-category li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: bold;
}
.service-category li:last-child {
    border-bottom: none;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.team-member { 
    background: white; 
    padding: 2rem; 
    text-align: center; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 480px;
}
.team-member img { 
    width: 150px; 
    height: 150px; 
    border-radius: 50%; 
    object-fit: cover;
    object-position: center top;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.team-member h3 {
    font-size: 1.2rem;
    color: #1a237e;
    margin: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
}
.team-member .title {
    font-weight: bold;
    color: #c62828;
    margin: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
    flex-shrink: 0;
}
.team-member .description {
    flex: 1;
    margin: 0.5rem 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    text-align: center;
}
.team-member .team-member-linkedin {
    margin-top: auto;
    flex-shrink: 0;
}
/* Enhanced Footer */
.enhanced-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    border-top: 3px solid #c62828;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}
.footer-section h3 {
    color: #ff6f00;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-item {
    margin-bottom: 1rem;
    line-height: 1.6;
}
.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #ccc;
}
.emergency-phone {
    color: #ff6f00 !important;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
}
.emergency-phone:hover {
    color: #ffab40 !important;
}
.contact-item a {
    color: white;
    text-decoration: none;
}
.contact-item a:hover {
    color: #c62828;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #c62828;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0077b5;
    color: white !important;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}
.social-link:hover {
    background: #005885;
    transform: translateY(-2px);
}
.global-presence h4 {
    color: #ff6f00;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.global-presence p {
    color: #ccc;
    font-size: 0.9rem;
}
.footer-bottom {
    background: #0a0a0a;
    border-top: 1px solid #333;
}
.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-links-inline {
    display: flex;
    gap: 2rem;
}
.footer-links-inline a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-links-inline a:hover {
    color: white;
}
.linkedin-section { margin-bottom: 1.5rem; }
.linkedin-section p { margin-bottom: 1rem; font-size: 1.1rem; color: #ccc; }
.linkedin-button { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: #0077b5; 
    color: white; 
    padding: 12px 24px; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: bold; 
    transition: all 0.3s ease;
    font-size: 1rem;
}
.linkedin-button:hover { 
    background: #005885; 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}
.linkedin-button svg { flex-shrink: 0; }
.team-member-linkedin { 
    display: inline-flex; 
    align-items: center; 
    gap: 5px; 
    background: #0077b5; 
    color: white; 
    padding: 8px 16px; 
    text-decoration: none; 
    border-radius: 6px; 
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}
.team-member-linkedin:hover { 
    background: #005885; 
    transform: translateY(-1px); 
}
.team-member-linkedin svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-linkedin-section { 
    margin-top: 2rem; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255,255,255,0.2); 
}
.hero-linkedin-section p { 
    margin-bottom: 1rem; 
    font-size: 1.2rem; 
    color: rgba(255,255,255,0.9); 
    font-weight: 500;
}
.hero-linkedin-button { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    background: #0077b5; 
    color: white; 
    padding: 16px 32px; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: bold; 
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid #0077b5;
}
.hero-linkedin-button:hover { 
    background: white; 
    color: #0077b5;
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}
.hero-linkedin-button svg { flex-shrink: 0; }
/* Partners Section */
.partners-section {
    background: white;
}
.partners-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}
.partners-logos { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 2.5rem; 
    margin: 3rem 0; 
    text-align: center;
}
.partner-logo-item { 
    background: white; 
    padding: 2.5rem 1.5rem; 
    border-radius: 15px; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}
.partner-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1a237e, #c62828);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.partner-logo-item:hover::before {
    transform: scaleX(1);
}
.partner-logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.main-partner-logo { 
    height: 70px;
    width: 160px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(20%);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}
.partner-logo-item:hover .main-partner-logo { 
    filter: grayscale(0%); 
    transform: scale(1.1); 
}
.partner-name {
    font-weight: 600;
    color: #1a237e;
    font-size: 1rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}
.partners-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; letter-spacing: 1px; }
    .hero-description { font-size: 1rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-cta { flex-direction: column; align-items: center; gap: 1rem; }
    .story-content { grid-template-columns: 1fr; gap: 2rem; }
    .value-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .navbar .nav-container { 
        padding: 0 15px; 
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .navbar img { 
        height: 45px; 
        margin-bottom: 0.5rem;
    }
    .nav-menu { 
        gap: 1rem; 
        flex-wrap: wrap; 
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    .nav-menu a { 
        font-size: 0.9rem;
        padding: 0.5rem;
        white-space: nowrap;
    }
    h2 { font-size: 2rem; margin-bottom: 1.5rem; }
    h3 { font-size: 1.2rem; }
    .section-intro { font-size: 1rem; margin-bottom: 2rem; }
    .story-text h3 { font-size: 1.4rem; }
    .story-text p { font-size: 1rem; }
}