@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arboria:wght@900&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography Rules */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arboria', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p, span, div, a, li, label, input, textarea, button {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background-color 0.3s ease;
    height: 80px;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

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

.navbar-logo-img {
    height: 140px;
    width: auto;
    margin: -30px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a.active {
    border-bottom: 2px solid #47A74F98;
    padding-bottom: 4px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    min-width: 160px;
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 0px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content:hover {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Erweiterte Hover-Zone */
.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
    z-index: 999;
}

.contact-btn {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.hero-section {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 100px 50px 120px 100px;
    min-height: 80vh;
    position: relative;
    z-index: 5;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero-content h1 {
    
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.play-btn {
    background: #000;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.play-btn:hover {
    background: #333;
}

.more-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.more-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.play-icon {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translate(50%, -50%);
    background: rgba(71, 167, 79, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.play-icon:hover {
    background: #47A74F;
    transform: translate(50%, -50%) scale(1.1);
}

.future-section {
    padding: 80px 50px;
    background: #ffffff;
    border-radius: 20px;
    margin: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e5e5;
    position: relative;
    z-index: 10;
}

.future-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.future-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1.2;
    text-shadow: none;
}

.drone-container {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.drone-image {
    max-width: 700px;
    height: auto;
    animation: flyUp 3s ease-in-out infinite alternate;
    filter: none;
    opacity: 1;
    box-shadow: none;
}

@keyframes flyUp {
    0% { 
        transform: translateY(20px);  
    }
    100% { 
        transform: translateY(-20px); 
    }
}

.features-section {
    background: #f0f8f0;
    padding: 100px 50px;
    min-height: 100vh;
}

.features-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.feature {
    flex: 1;
    text-align: center;
}

.feature-icon {
    margin-bottom: 30px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.feature h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.feature-details p {
    text-align: left;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.feature-details strong {
    color: #333;
}

.connect-section {
    background: #1a1a1a;
    color: white;
    padding: 100px 50px;
    min-height: 80vh;
}

.connect-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.connect-container h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 60px;
    color: white;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.social-link-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.social-link-card:hover::before {
    left: 100%;
}

.social-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(71, 167, 79, 0.2);
}

.linkedin-card:hover {
    border-color: #0077b5;
    box-shadow: 0 20px 40px rgba(0, 119, 181, 0.3);
}

.instagram-card:hover {
    border-color: #e4405f;
    box-shadow: 0 20px 40px rgba(228, 64, 95, 0.3);
}

.social-card-content {
    position: relative;
    z-index: 2;
}

.social-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.social-link-card h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.social-link-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.linkedin-btn {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
    color: white;
}

.linkedin-btn:hover {
    background: linear-gradient(45deg, #005885, #0077b5);
    transform: scale(1.05);
}

.instagram-btn {
    background: linear-gradient(45deg, #e4405f, #fd1d1d, #fcb045);
    color: white;
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #d62976, #e4405f, #fcb045);
    transform: scale(1.05);
}

.social-cta-btn svg {
    transition: transform 0.3s ease;
}

.social-cta-btn:hover svg {
    transform: translateX(5px);
}

.testimonial-section {
    background: linear-gradient(135deg, #7a9b7e, #6b8e6f);
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2;
}

.quote-mark {
    margin-bottom: 40px;
    opacity: 0.6;
    position: relative;
    font-size: 150px;
    line-height: 1;
    color: rgba(255,255,255,0.8);
    font-family: Georgia, serif;
}

.quote-mark::before {
    content: '"';
    display: block;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.testimonial-quote {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: white;
    margin: 0 0 40px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    padding-left: 60px;
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.testimonial-author {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    font-style: normal;
    margin-left: 60px;
    display: block;
    position: relative;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .play-icon {
        position: static;
        transform: none;
        margin-top: 30px;
    }

    .features-container {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .social-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .connect-container h2 {
        font-size: 36px;
    }
    
    .social-link-card {
        padding: 30px 20px;
    }
    
    .social-link-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 80px 30px;
    }
    
    .testimonial-quote {
        font-size: 22px;
        padding-left: 40px;
    }
    
    .testimonial-author {
        font-size: 18px;
        margin-left: 40px;
    }
    
    .testimonial-author::before {
        left: -30px;
        width: 20px;
    }
}

.newsletter-section {
    background: #000;
    padding: 80px 50px;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-container h2 {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.newsletter-container p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    background: transparent;
    color: white;
    font-size: 16px;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.subscribe-btn {
    padding: 15px 30px;
    background: white;
    color: #000;
    border: none;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.subscribe-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .email-input {
        border-radius: 4px;
        border-right: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .subscribe-btn {
        border-radius: 4px;
    }
    
    .newsletter-container h2 {
        font-size: 28px;
    }
}

.footer {
    background: #f8f8f8;
    padding: 60px 50px 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 150px;
    width: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #333;
}

.footer-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #666;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #333;
}

.footer-newsletter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-newsletter span {
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
}

.footer-email-input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-right: none;
    background: white;
    color: #333;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    outline: none;
    min-width: 200px;
}

.footer-email-input::placeholder {
    color: #999;
}

.footer-email-input:focus {
    border-color: #999;
}

.footer-subscribe-btn {
    padding: 12px 20px;
    background: #333;
    color: white;
    border: none;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-subscribe-btn:hover {
    background: #000;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-newsletter span {
        white-space: normal;
    }
    
    .footer-email-input {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mission Page Styles */
.mission-hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.mission-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.mission-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 5;
    text-align: center;
}

.mission-hero-content h1 {
    
    font-size: 64px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.mission-content-section {
    background: white;
    padding: 100px 50px;
    position: relative;
    z-index: 5;
}

.mission-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.mission-text h2 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.mission-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.mission-vision-section {
    background: white;
    padding: 100px 50px;
    position: relative;
    z-index: 5;
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-vision-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.mission-vision-text h2 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.mission-vision-text h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.mission-vision-text h3:first-of-type {
    margin-top: 0;
}

.mission-vision-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .mission-hero-content h1 {
        font-size: 36px;
        padding: 0 20px;
    }
    
    .mission-content-container,
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-text h2,
    .mission-vision-text h2 {
        font-size: 36px;
    }
}

.jedsy-x-title {
    
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.jedsy-x-intro-section {
    background: white;
    padding: 100px 50px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jedsy-x-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.jedsy-x-drone-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jedsy-x-drone {
    max-width: 800px;
    height: auto;
    animation: flyUp 3s ease-in-out infinite alternate;
}

.jedsy-x-delivery-section {
    background: #f8f9fa;
    padding: 100px 50px;
}

.jedsy-x-delivery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 80px;
}

.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.delivery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.delivery-feature-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.delivery-feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.delivery-feature-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.feature-label {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(90deg);
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

@media (max-width: 768px) {
    .delivery-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .delivery-title {
        font-size: 28px;
    }
}

.jedsy-x-features-section {
    background: white;
    padding: 100px 50px;
}

.jedsy-x-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-card-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.features-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.features-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.features-description strong {
    color: #333;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.population-comparison-section {
    background: #f8f9fa;
    padding: 100px 50px;
}

.population-comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.comparison-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.comparison-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-image {
    display: flex;
    justify-content: center;
}

.population-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .comparison-title {
        font-size: 24px;
    }
    
    .comparison-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.key-facts-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.key-facts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(71, 167, 79, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(71, 167, 79, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.key-facts-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.key-facts-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.key-facts-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #47A74F, transparent);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }
}

.fact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(71, 167, 79, 0.1), transparent);
    transition: left 0.6s ease;
}

.fact-card:hover::before {
    left: 100%;
}

.fact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(71, 167, 79, 0.3);
    box-shadow: 0 20px 40px rgba(71, 167, 79, 0.1);
}

.fact-icon {
    width: 80px;
    height: 80px;
    background: rgba(71, 167, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.fact-icon-img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(120deg) brightness(103%) contrast(101%);
    transition: all 0.3s ease;
}

.fact-card:hover .fact-icon-img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(120deg) brightness(120%) contrast(110%);
    transform: scale(1.1);
}

.fact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.fact-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.fact-card strong {
    color: #47A74F;
    font-weight: 600;
}

@media (max-width: 768px) {
    .key-facts-section {
        padding: 80px 30px;
    }
    
    .key-facts-title {
        font-size: 36px;
        margin-bottom: 60px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .fact-card {
        padding: 30px 25px;
    }
    
    .fact-card h3 {
        font-size: 18px;
    }
    
    .fact-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .fact-icon {
        width: 60px;
        height: 60px;
    }
}

.operations-showcase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.operations-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(71, 167, 79, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(71, 167, 79, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.operations-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.operations-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.operations-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #47A74F, transparent);
}

.operation-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.operation-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.operation-content {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.operation-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.operation-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 10;
}

.ground-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.routes-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.distance-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.operation-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.operation-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.operation-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.operation-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.operation-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

@media (max-width: 768px) {
    .operations-showcase-section {
        padding: 80px 20px;
    }
    
    .operations-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .operation-item,
    .operation-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .operation-content {
        padding: 30px 20px;
    }
    
    .operation-text h3 {
        font-size: 20px;
    }
    
    .operation-img {
        height: 250px;
    }
}

.spec-sheet-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 50px;
    position: relative;
}

.spec-sheet-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.spec-sheet-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.spec-sheet-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.spec-sheet-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid #e9ecef;
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333 !important;
    margin-bottom: 10px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    color: #333 !important;
    transition: all 0.3s ease;
    background: white !important;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #47A74F;
    background: white;
    box-shadow: 0 0 0 3px rgba(71, 167, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666 !important;
    opacity: 1;
}

/* Ensure form visibility with high specificity */
.spec-sheet-section .spec-sheet-form .form-group input,
.spec-sheet-section .spec-sheet-form .form-group textarea {
    color: #333 !important;
    background: white !important;
    border: 2px solid #ddd !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.spec-sheet-section .spec-sheet-form .form-group label {
    color: #333 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.spec-sheet-btn {
    background: linear-gradient(135deg, #333, #000);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
}

.spec-sheet-btn:hover {
    background: linear-gradient(135deg, #000, #333);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .spec-sheet-section {
        padding: 80px 20px;
    }
    
    .spec-sheet-container h2 {
        font-size: 32px;
    }
    
    .spec-sheet-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spec-sheet-btn {
        width: 100%;
        padding: 15px;
    }
}

.mailbox-delivery-section {
    background: white;
    padding: 100px 50px;
}

.mailbox-delivery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mailbox-delivery-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 80px;
}

.delivery-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.delivery-feature.reverse {
    direction: rtl;
}

.delivery-feature.reverse > * {
    direction: ltr;
}

.delivery-feature-image {
    position: relative;
}

.delivery-feature-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.delivery-feature-content {
    position: relative;
    padding: 20px;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    z-index: 10;
}

.easy-badge {
    background: #4CAF50;
}

.delivery-feature-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.delivery-feature-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .mailbox-delivery-section {
        padding: 80px 20px;
    }
    
    .mailbox-delivery-title {
        font-size: 32px;
    }
    
    .delivery-feature,
    .delivery-feature.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .feature-badge {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }
}

.mailbox-advantages-section {
    background: #f8f9fa;
    padding: 100px 10px 10px 10px;
}

.mailbox-advantages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.advantages-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 80px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.advantage-card {
    text-align: center;
    padding: 20px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon-img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mailbox-advantages-section {
        padding: 80px 20px;
    }
    
    .advantages-title {
        font-size: 28px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .advantage-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COOL JOB OPENINGS SECTION STYLES ===== */
.job-openings-section {
    background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0f2e0f 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.job-openings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(71, 167, 79, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(71, 167, 79, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 139, 34, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.job-openings-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.job-openings-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(135deg, #47A74F, #47A74F, #47A74F);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(71, 167, 79, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.job-openings-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #47A74F, #47A74F, #47A74F, transparent);
    border-radius: 2px;
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(71, 167, 79, 0.5); }
    50% { box-shadow: 0 0 20px rgba(71, 167, 79, 0.8); }
}

.job-openings-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.job-openings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.job-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(71, 167, 79, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.job-card:hover::before {
    left: 100%;
}

.job-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(71, 167, 79, 0.5);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(71, 167, 79, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.job-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, #47A74F, #47A74F);
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    opacity: 0.8;
}

.job-card:hover .job-image img {
    transform: scale(1.1);
    opacity: 1;
}

.job-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.job-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.job-date {
    font-size: 14px;
    color: #47A74F;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-status {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.job-apply-btn {
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(71, 167, 79, 0.3);
}

.job-apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    transition: left 0.3s ease;
    z-index: -1;
}

.job-apply-btn:hover::before {
    left: 0;
}

.job-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 167, 79, 0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .job-openings-section {
        padding: 80px 20px;
    }

    .job-openings-title {
        font-size: 36px;
    }

    .job-openings-subtitle {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .job-openings-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .job-card {
        margin: 0 10px;
    }

    .job-content {
        padding: 25px 20px;
    }

    .job-content h3 {
        font-size: 18px;
    }
}

/* ===== ABOUT US PAGE STYLES ===== */
.about-intro-section {
    background: white;
    padding: 100px 50px;
    text-align: center;
}

.about-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.about-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

.about-story-section {
    background: #f8f9fa;
    padding: 100px 50px;
}

.about-story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.about-story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-values-section {
    background: white;
    padding: 100px 50px;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-values-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(71, 167, 79, 0.3);
}

.value-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.about-team-section {
    background: #f8f9fa;
    padding: 100px 50px;
}

.about-team-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-team-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 80px;
}

.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.leader-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-image {
    margin-bottom: 30px;
}

.leader-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #47A74F;
}

.leader-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.leader-title {
    font-size: 16px;
    color: #47A74F;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Enhanced Leader Card Styles */
.leader-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.achievement-badge {
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(71, 167, 79, 0.3);
}

.leader-timeline {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(71, 167, 79, 0.1), rgba(71, 167, 79, 0.05));
    border-radius: 15px;
    border-left: 4px solid #47A74F;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    background: #47A74F;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-event {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/* Enhanced leader card for featured content */
.leader-card-featured {
    grid-column: span 2;
    max-width: none;
}

.leadership-grid-extended {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .leadership-grid-extended {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leader-card-featured {
        grid-column: span 1;
    }

    .leader-achievements {
        justify-content: flex-start;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.about-global-section {
    background: white;
    padding: 100px 50px;
}

.about-global-container {
    max-width: 1200px;
    margin: 0 auto;
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.global-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.global-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #47A74F;
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #47A74F;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.global-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-intro-title {
        font-size: 32px;
    }

    .about-intro-text {
        font-size: 16px;
    }

    .about-story-content,
    .global-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-text h2,
    .about-values-title,
    .about-team-title,
    .global-text h2 {
        font-size: 32px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .leadership-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .global-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Achievement Highlights */
.achievement-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(71, 167, 79, 0.1), rgba(71, 167, 79, 0.05));
    border-radius: 15px;
    border-left: 4px solid #47A74F;
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #47A74F;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.highlight-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Achievements Section */
.achievements-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 50px;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.achievements-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 80px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.achievement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: rgba(71, 167, 79, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
}

.achievement-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.achievement-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Sustainability Section */
.sustainability-section {
    background: white;
    padding: 100px 50px;
}

.sustainability-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sustainability-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.sustainability-intro {
    font-size: 20px;
    color: #47A74F;
    font-weight: 600;
    margin-bottom: 40px;
}

.sustainability-features {
    margin: 40px 0;
}

.sustainability-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.sustainability-mission {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    border-left: 4px solid #47A74F;
    padding-left: 20px;
    margin-top: 30px;
}

.sustainability-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Locations Section */
.contact-locations-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 50px;
}

.contact-locations-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.locations-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 80px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.location-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(71, 167, 79, 0.1), transparent);
    transition: left 0.6s ease;
}

.location-card:hover::before {
    left: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: rgba(71, 167, 79, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-flag {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
}

.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.location-details {
    position: relative;
    z-index: 2;
}

.location-details p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.location-details p:first-child {
    font-weight: 700;
    color: #47A74F;
    margin-bottom: 15px;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .achievements-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .achievement-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .sustainability-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .achievements-title,
    .locations-title,
    .sustainability-text h2 {
        font-size: 32px;
    }
}

/* ===== FEATURES PAGE STYLES ===== */
.features-hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.features-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(71, 167, 79, 0.2));
}

.features-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 50px;
}

.features-hero-content h1 {
    
    font-size: 64px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    max-width: 1000px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #47A74F);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.features-intro-section {
    background: white;
    padding: 120px 50px;
    position: relative;
    z-index: 10;
}

.features-intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-intro-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.features-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.features-intro-image {
    position: relative;
    text-align: center;
}

.features-intro-image img {
    max-width: 100%;
    height: auto;
    animation: flyUp 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.features-performance-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.features-performance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(71, 167, 79, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-performance-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.performance-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.performance-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.performance-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.performance-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #47A74F;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.highlight-text p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.features-ecosystem-section {
    background: white;
    padding: 120px 50px;
    position: relative;
}

.features-ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ecosystem-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.ecosystem-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 80px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.ecosystem-card {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(71, 167, 79, 0.1), transparent);
    transition: left 0.6s ease;
}

.ecosystem-card:hover::before {
    left: 100%;
}

.ecosystem-card:hover {
    transform: translateY(-15px);
    border-color: rgba(71, 167, 79, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ecosystem-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
}

.ecosystem-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.ecosystem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    position: relative;
    z-index: 2;
}

.ecosystem-mission {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, rgba(71, 167, 79, 0.1), rgba(71, 167, 79, 0.05));
    border-radius: 20px;
    border-left: 5px solid #47A74F;
}

.features-specs-section {
    background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0f2e0f 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.features-specs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(71, 167, 79, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(71, 167, 79, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.features-specs-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.specs-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.specs-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
}

.specs-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.specs-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #47A74F;
    box-shadow: 0 0 20px rgba(71, 167, 79, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.specs-submit-btn {
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(71, 167, 79, 0.3);
}

.specs-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    transition: left 0.3s ease;
    z-index: -1;
}

.specs-submit-btn:hover::before {
    left: 0;
}

.specs-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(71, 167, 79, 0.5);
    color: #fff;
}

@keyframes flyUp {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

/* Features Page Mobile Responsiveness */
@media (max-width: 768px) {
    .features-hero-content h1 {
        font-size: 36px;
    }

    .features-hero-section,
    .features-intro-section,
    .features-performance-section,
    .features-ecosystem-section,
    .features-specs-section {
        padding: 80px 20px;
    }

    .features-intro-content,
    .performance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-intro-text h2,
    .performance-text h2,
    .ecosystem-title,
    .specs-title {
        font-size: 32px;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .specs-form-container {
        padding: 30px 20px;
    }

    .performance-highlights {
        gap: 20px;
    }

    .highlight-item {
        padding: 20px;
    }

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

/* ===== CAMERAS PAGE STYLES ===== */
.cameras-hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.cameras-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cameras-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(71, 167, 79, 0.3));
}

.cameras-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 50px;
}

.cameras-hero-content h1 {
    
    font-size: 64px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0 auto 20px;
    max-width: 1000px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #47A74F);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cameras-intro-section {
    background: white;
    padding: 120px 50px;
    position: relative;
    z-index: 10;
}

.cameras-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

.camera-showcase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.camera-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(71, 167, 79, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(71, 167, 79, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.camera-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.camera-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    position: relative;
}

.camera-card:nth-child(even) {
    direction: rtl;
}

.camera-card:nth-child(even) .camera-content {
    direction: ltr;
}

.camera-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.camera-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.camera-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

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

.camera-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(71, 167, 79, 0.3);
}

.camera-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.camera-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.camera-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.camera-specs h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.spec-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.camera-highlight {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    background: linear-gradient(135deg, rgba(71, 167, 79, 0.1), rgba(71, 167, 79, 0.05));
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #47A74F;
    margin-bottom: 30px;
}

.camera-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 5px 15px rgba(71, 167, 79, 0.3);
}

.camera-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 167, 79, 0.5);
}

.camera-link-btn .arrow {
    transition: transform 0.3s ease;
}

.camera-link-btn:hover .arrow {
    transform: translateX(5px);
}

.camera-selection-section {
    background: white;
    padding: 120px 50px;
}

.camera-selection-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.selection-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.selection-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.selection-consultation {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-weight: 600;
}

.camera-contact-section {
    background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0f2e0f 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.camera-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(71, 167, 79, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(71, 167, 79, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.camera-contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.contact-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #47A74F;
    box-shadow: 0 0 20px rgba(71, 167, 79, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(71, 167, 79, 0.3);
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-submit-btn:hover::before {
    left: 0;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(71, 167, 79, 0.5);
    color: #fff;
}

/* Cameras Page Mobile Responsiveness */
@media (max-width: 768px) {
    .cameras-hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .cameras-hero-section,
    .cameras-intro-section,
    .camera-showcase-section,
    .camera-selection-section,
    .camera-contact-section {
        padding: 80px 20px;
    }

    .intro-title,
    .selection-title,
    .contact-title {
        font-size: 32px;
    }

    .camera-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .camera-card:nth-child(even) {
        direction: ltr;
    }

    .camera-content {
        padding: 30px;
    }

    .camera-content h3 {
        font-size: 24px;
    }

    .camera-badge {
        top: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 10px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .camera-showcase-container {
        gap: 50px;
    }
}

/* ===== USE CASES PAGE STYLES ===== */
.use-cases-hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.use-cases-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.use-cases-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.use-cases-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 50px;
}

.use-cases-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.use-cases-hero-content h1 {
    
    font-size: 64px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0 auto 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-mission {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.use-case-section {
    padding: 80px 50px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.use-case-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.use-case-section:nth-child(odd) {
    background: white;
}

.use-case-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(71, 167, 79, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.use-case-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.use-case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.use-case-content.reverse {
    direction: rtl;
}

.use-case-content.reverse .use-case-text {
    direction: ltr;
}

.use-case-video {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    background: #000;
}

.use-case-video:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.use-case-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}



.use-case-text {
    padding: 20px 0;
}

.use-case-badge {
    display: inline-block;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(71, 167, 79, 0.3);
}

.use-case-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.use-case-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.use-case-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(71, 167, 79, 0.1);
    border-radius: 12px;
    border-left: 4px solid #47A74F;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(71, 167, 79, 0.15);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item span:last-child {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Compact Features Styling */
.use-case-features-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.feature-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(71, 167, 79, 0.1);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(71, 167, 79, 0.2);
    transition: all 0.3s ease;
}

.feature-compact:hover {
    background: rgba(71, 167, 79, 0.2);
    transform: translateY(-2px);
}

/* Challenge Solution Section */
.challenge-solution-section {
    background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0f2e0f 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.challenge-solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(71, 167, 79, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(71, 167, 79, 0.15) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.challenge-solution-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.challenge-content {
    text-align: center;
}

.challenge-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    line-height: 1.2;
}

.challenge-description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.challenge-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.challenge-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.challenge-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(71, 167, 79, 0.1), transparent);
    transition: left 0.6s ease;
}

.challenge-feature:hover::before {
    left: 100%;
}

.challenge-feature:hover {
    transform: translateY(-10px);
    border-color: rgba(71, 167, 79, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.challenge-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
}

.challenge-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.challenge-text p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.challenge-cta-btn {
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: #000;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(71, 167, 79, 0.3);
}

.challenge-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    transition: left 0.3s ease;
    z-index: -1;
}

.challenge-cta-btn:hover::before {
    left: 0;
}

.challenge-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(71, 167, 79, 0.5);
    color: #fff;
}

/* Use Cases Page Mobile Responsiveness */
@media (max-width: 768px) {
    .use-cases-hero-content h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-mission {
        font-size: 14px;
    }

    .use-cases-hero-section,
    .use-case-section,
    .challenge-solution-section {
        padding: 80px 20px;
    }

    .use-case-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .use-case-content.reverse {
        direction: ltr;
    }

    .use-case-text h2 {
        font-size: 28px;
    }

    .use-case-text p {
        font-size: 16px;
    }

    .use-case-video video {
        min-height: 200px;
    }

    .use-case-features {
        gap: 15px;
    }

    .feature-item {
        padding: 12px 15px;
    }

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

    .feature-icon {
        font-size: 18px;
    }

    .feature-item span:last-child {
        font-size: 14px;
    }

    .challenge-title {
        font-size: 32px;
    }

    .challenge-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .challenge-features {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .challenge-feature {
        padding: 30px 20px;
    }

    .challenge-icon {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .challenge-text h3 {
        font-size: 18px;
    }

    .challenge-text p {
        font-size: 14px;
    }

    .challenge-cta-btn {
        padding: 16px 40px;
        font-size: 14px;
    }

    .use-case-features-compact {
        gap: 10px;
        margin-top: 15px;
    }

    .feature-compact {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ===== PRIVACY OPT-OUT PAGE STYLES ===== */
.privacy-hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.privacy-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.privacy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.privacy-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 50px;
}

.privacy-hero-content h1 {
    
    font-size: 56px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0 auto 20px;
    line-height: 1.2;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.privacy-content-section {
    background: white;
    padding: 120px 50px;
    position: relative;
    z-index: 10;
}

.privacy-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 80px;
}

.privacy-icon {
    font-size: 64px;
    margin-bottom: 30px;
    display: block;
}

.privacy-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.privacy-card {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(71, 167, 79, 0.1), transparent);
    transition: left 0.6s ease;
}

.privacy-card:hover::before {
    left: 100%;
}

.privacy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(71, 167, 79, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
}

.privacy-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.privacy-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    position: relative;
    z-index: 2;
}

.privacy-control-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.privacy-control-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(71, 167, 79, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-control-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.control-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.control-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.control-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #47A74F;
}

.control-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.control-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-card {
    background: linear-gradient(145deg, rgba(71, 167, 79, 0.1), rgba(71, 167, 79, 0.05));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(71, 167, 79, 0.2);
    width: 100%;
}

.action-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.action-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.opt-out-btn {
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(71, 167, 79, 0.3);
}

.opt-out-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 167, 79, 0.5);
}

.action-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

.privacy-info-section {
    background: white;
    padding: 120px 50px;
}

.privacy-info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-item {
    text-align: center;
    padding: 30px 20px;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
}

.info-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.info-link {
    color: #47A74F;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: #47A74F;
    transform: translateX(5px);
}

/* Privacy Page Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .privacy-hero-section,
    .privacy-content-section,
    .privacy-control-section,
    .privacy-info-section {
        padding: 80px 20px;
    }

    .privacy-intro h2,
    .control-title,
    .info-content h2 {
        font-size: 32px;
    }

    .privacy-cards,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .control-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .control-feature {
        padding: 20px;
        margin-bottom: 25px;
    }

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

    .action-card {
        padding: 30px 20px;
    }

    .privacy-icon {
        font-size: 48px;
    }

    .card-icon,
    .info-icon {
        font-size: 36px;
    }

    .feature-icon {
        font-size: 24px;
    }
}

/* ===== TERMS OF SERVICE PAGE STYLES ===== */
.terms-hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.terms-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.terms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.terms-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 50px;
}

.terms-hero-content h1 {
    
    font-size: 56px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0 auto 20px;
    line-height: 1.2;
    max-width: 900px;
}

.terms-hero-content .hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.terms-content-section {
    background: white;
    padding: 120px 50px;
    position: relative;
    z-index: 10;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-content-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.terms-card {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    padding: 60px 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(71, 167, 79, 0.1);
    position: relative;
    overflow: hidden;
}

.terms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(71, 167, 79, 0.05), transparent);
    transition: left 0.6s ease;
}

.terms-card:hover::before {
    left: 100%;
}

.terms-icon {
    font-size: 64px;
    margin-bottom: 30px;
    display: block;
}

.terms-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.terms-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.terms-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(71, 167, 79, 0.3);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.terms-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(71, 167, 79, 0.5);
}

.external-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.terms-link-btn:hover .external-icon {
    transform: translate(3px, -3px);
}

.terms-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Terms Page Mobile Responsiveness */
@media (max-width: 768px) {
    .terms-hero-content h1 {
        font-size: 32px;
    }

    .terms-hero-content .hero-subtitle {
        font-size: 16px;
    }

    .terms-hero-section,
    .terms-content-section {
        padding: 80px 20px;
    }

    .terms-card {
        padding: 40px 30px;
    }

    .terms-card h2 {
        font-size: 28px;
    }

    .terms-description {
        font-size: 16px;
    }

    .terms-link-btn {
        padding: 16px 30px;
        font-size: 14px;
    }

    .terms-icon {
        font-size: 48px;
    }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.blog-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.blog-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 50px;
}

.blog-hero-content h1 {
    
    font-size: 56px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0 auto 20px;
    line-height: 1.2;
    max-width: 900px;
}

.blog-hero-content .hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.blog-content-section {
    background: white;
    padding: 120px 50px;
    position: relative;
    z-index: 10;
}

.blog-content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(71, 167, 79, 0.3);
}

.blog-post.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-post.featured .blog-image {
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(71, 167, 79, 0.3);
}

.featured-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post.featured .blog-content {
    justify-content: center;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-date {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.blog-category {
    background: rgba(71, 167, 79, 0.1);
    color: #47A74F;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    color: #47A74F;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    color: #47A74F;
    transform: translateX(5px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.pagination-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #47A74F;
    border-color: #47A74F;
    color: white;
}

.pagination-btn.active {
    box-shadow: 0 5px 15px rgba(71, 167, 79, 0.3);
}

/* Blog Page Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 36px;
    }

    .blog-hero-content .hero-subtitle {
        font-size: 16px;
    }

    .blog-hero-section,
    .blog-content-section {
        padding: 80px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .blog-post.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .blog-image {
        height: 200px;
    }

    .blog-post.featured .blog-image {
        height: 250px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-post h2 {
        font-size: 22px;
    }

    .blog-post h3 {
        font-size: 18px;
    }

    .blog-post p {
        font-size: 14px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .blog-pagination {
        gap: 10px;
        margin-top: 40px;
    }

    .pagination-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}



.mailbox-structure-section {
    background: white;
    padding: 80px 50px 80px 50px;
}

.mailbox-structure-container {
    max-width: 1200px;
    margin: 0 auto;
}

.structure-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}

.structure-feature.reverse {
    grid-template-columns: 1fr 1fr;
}

.structure-feature.reverse .structure-feature-content {
    order: 1;
}

.structure-feature.reverse .structure-feature-image {
    order: 2;
}

.structure-feature-content {
    position: relative;
    padding: 20px;
}

.structure-feature-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.structure-feature-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.structure-feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.structure-feature-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.structure-badge {
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.autonomous-badge {
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .mailbox-structure-section {
        padding: 80px 20px;
    }
    
    .structure-feature {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .structure-feature.reverse {
        grid-template-columns: 1fr;
    }
    
    .structure-feature.reverse .structure-feature-content,
    .structure-feature.reverse .structure-feature-image {
        order: unset;
    }
    
    .structure-feature-content {
        padding: 20px;
    }
    
    .structure-feature-text h3 {
        font-size: 20px;
    }
}

.mailbox-structure-section .structure-feature:not(:last-child) {
    margin-bottom: 30px;
}

.mailbox-structure-section .structure-feature {
    margin-bottom: 40px;
}

.mailbox-structure-section .structure-feature:last-child {
    margin-bottom: 0;
}

.careers-benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 50px;
}

.careers-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.careers-positions-section {
    background: white;
    padding: 100px 50px;
}

.careers-positions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.positions-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 80px;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.position-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: #47A74F;
    transform: translateY(-5px);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.position-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.position-type {
    background: #47A74F;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.position-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.skill-tag {
    background: #e9ecef;
    color: #495057;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.apply-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.apply-btn:hover {
    background: #47A74F;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
}
.careers-about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.careers-about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(71, 167, 79, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.careers-about-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(71, 167, 79, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-about-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(71, 167, 79, 0.2);
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #47A74F, #47A74F);
    border-radius: 2px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.about-cta {
    background: linear-gradient(135deg, #47A74F 0%, #47A74F 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(71, 167, 79, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.mission-vision-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.mission-vision-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-vision-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.mission-vision-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.mission-vision-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

/* Future Section Styles */
.future-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.future-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(71, 167, 79, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.future-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.future-text {
    color: black;
}

.future-text h2 {
    font-size: 56px;
    font-weight: 800;
    color: black;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: none;
}

.future-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    text-shadow: none;
}

.future-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(71, 167, 79, 0.2);
    border-color: rgba(71, 167, 79, 0.4);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #47A74F;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(71, 167, 79, 0.5);
}

.stat-label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.future-cta {
    margin-top: 30px;
}

.future-btn {
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(71, 167, 79, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.future-btn::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: left 0.6s ease;
}

.future-btn:hover::before {
    left: 100%;
}

.future-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(71, 167, 79, 0.5);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.future-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.drone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.drone-background-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
}

.effect-circle {
    position: absolute;
    border: 2px solid rgba(71, 167, 79, 0.3);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.effect-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.effect-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.effect-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.drone-image {
    width: 400px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(71, 167, 79, 0.3));
    position: relative;
    z-index: 3;
}

.drone-trail {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(71, 167, 79, 0.6), transparent);
    transform: translateY(-50%);
    animation: trail 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes trail {
    0%, 100% {
        opacity: 0;
        width: 0%;
    }
    50% {
        opacity: 1;
        width: 100%;
    }
}

/* Mobile Responsiveness for Future Section */
@media (max-width: 768px) {
    .future-section {
        padding: 80px 20px;
        min-height: 60vh;
    }

    .future-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .future-text h2 {
        font-size: 36px;
    }

    .future-description {
        font-size: 16px;
    }

    .future-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat {
        padding: 15px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 24px;
    }

    .drone-container {
        height: 350px;
    }

    .drone-image {
        width: 300px;
    }

    .drone-background-effects {
        width: 400px;
        height: 400px;
    }

    .effect-1 {
        width: 150px;
        height: 150px;
    }

    .effect-2 {
        width: 250px;
        height: 250px;
    }

    .effect-3 {
        width: 350px;
        height: 350px;
    }
}

/* ===== JOURNEY SECTION STYLES ===== */
.journey-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(71, 167, 79, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.journey-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid #47A74F;
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(71, 167, 79, 0.05), transparent);
    transition: left 0.6s ease;
}

.journey-card:hover::before {
    left: 100%;
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
}

.journey-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.journey-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.card-highlight {
    position: relative;
    z-index: 2;
}

.highlight-text {
    background: linear-gradient(135deg, #47A74F, #47A74F);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}



/* Journey Section Mobile Responsiveness */
@media (max-width: 768px) {
    .journey-section {
        padding: 80px 20px;
    }

    .journey-header h2 {
        font-size: 32px;
    }

    .journey-subtitle {
        font-size: 16px;
    }

    .journey-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .journey-card {
        padding: 30px 25px;
    }

    .card-icon {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .journey-card h3 {
        font-size: 20px;
    }

    .journey-card p {
        font-size: 14px;
    }

    .highlight-text {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-section {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 100px 50px 120px 100px;
    min-height: 80vh;
}

.hero-content h1,
.hero-content p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .careers-about-container,
    .mission-vision-container {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .about-title,
    .mission-vision-title {
        font-size: 26px;
    }
    
    .about-content p,
    .mission-vision-content p {
        font-size: 15px;
    }
    
    .future-section {
        margin: 20px;
        padding: 50px 25px;
        border-radius: 15px;
    }
    
    .future-content h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .drone-container {
        height: 250px;
    }
    
    .drone-image {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .about-title,
    .mission-vision-title {
        font-size: 22px;
    }
    
    .about-content p,
    .mission-vision-content p {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .future-section {
        margin: 20px;
        padding: 60px 30px;
        border-radius: 20px;
    }
    
    .future-content h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .future-section {
        margin: 20px;
        padding: 50px 25px;
        border-radius: 15px;
    }
    
    .future-content h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .drone-container {
        height: 250px;
    }
    
    .drone-image {
        max-width: 500px;
    }
}
/* === NEUE ANPASSUNGEN FÜR FUTURE SECTION (BILD 2 LOOK) === */

/* === HERO-BEREICH: Hintergrundvideo sichtbar und begrenzt === */

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh; /* Begrenzung auf den Hero-Bereich */
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dunkles Overlay im Hero-Bereich */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  background: rgba(0, 0, 0, 0.3); /* leichter dunkler Film */
  z-index: 0;
}

/* Hero-Inhalt sichtbar über Video */
.hero-section {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1,
.hero-content p {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===== VIDEO SHOWCASE SECTION ===== */
.video-showcase-section {
    background: #000;
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.video-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-showcase-content {
    margin-bottom: 50px;
}

.video-showcase-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.video-showcase-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.video-showcase-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.video-showcase-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.video-showcase-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Video Showcase Mobile Responsiveness */
@media (max-width: 768px) {
    .video-showcase-section {
        padding: 80px 20px;
    }

    .video-showcase-content h2 {
        font-size: 32px;
    }

    .video-showcase-subtitle {
        font-size: 16px;
    }

    .video-showcase-content {
        margin-bottom: 30px;
    }

    .video-showcase-wrapper {
        border-radius: 15px;
    }

    .video-showcase-wrapper iframe {
        border-radius: 15px;
    }
}

/* ===== SCROLL-CONTROLLED VIDEO SECTION ===== */
.scroll-video-section {
    position: relative;
    background: #000;
}

/* Create a long scroll area, while keeping the video pinned */
.scroll-video-spacer {
    height: 300vh; /* 3 viewport heights to scrub through */
    position: relative;
}

.scroll-video-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.scroll-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

#scroll-controlled-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Scroll Video Mobile Responsiveness */
@media (max-width: 768px) {
    .scroll-video-content {
        top: 30px;
    }

    .scroll-video-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .scroll-video-subtitle {
        font-size: 16px;
    }
}

/* === FUTURE SECTION: hell, kein Overlay, wie Bild 2 === */

.future-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  margin: 80px auto;
  width: 90%;
  max-width: 960px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 0 40px rgba(71, 167, 79, 0.07); /* weicher Glow */
  border: 1px solid #dcdcdc;
  position: relative;
  z-index: 10;
}

.future-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 50px;
  line-height: 1.2;
  text-shadow: none;
  text-align: center;
}

/* Drohnenbild hell und klar darstellen */
.drone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.drone-image {
  max-width: 700px;
  width: 100%;
  height: auto;
 
 filter: none;
  opacity: 1;
  box-shadow: none;
  animation: none;
}

@keyframes flyUp {
    0% { 
        transform: translateY(20px);  
    }
    100% { 
        transform: translateY(-20px); 
    }
}

.drone-image {
    max-width: 700px;
    height: auto;
    animation: flyUp 3s ease-in-out infinite alternate;
    filter: none;
    opacity: 1;
    box-shadow: none;
}

.spotlight-section {
  background: #fff;
  padding: 100px 50px;
}

.spotlight-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.spotlight-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  
}

.spotlight-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
  
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.spotlight-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.spotlight-image {
  position: relative;
  margin-bottom: 25px;
}

.spotlight-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.spotlight-name {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
  
}

.spotlight-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .spotlight-title {
    font-size: 36px;
  }
  
  .spotlight-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .spotlight-section {
    padding: 60px 30px;
  }
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.spotlight-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.spotlight-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.spotlight-name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.spotlight-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .spotlight-title {
    font-size: 36px;
  }
  
  .spotlight-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .spotlight-section {
    padding: 60px 30px;
  }
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.spotlight-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.spotlight-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.spotlight-name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.spotlight-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .spotlight-title {
    font-size: 36px;
  }
  
  .spotlight-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .spotlight-section {
    padding: 60px 30px;
  }
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.spotlight-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.spotlight-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.spotlight-name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.spotlight-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .spotlight-title {
    font-size: 36px;
  }
  
  .spotlight-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .spotlight-section {
    padding: 60px 30px;
  }
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.spotlight-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.spotlight-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.spotlight-name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.spotlight-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .spotlight-title {
    font-size: 36px;
  }
  
  .spotlight-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .spotlight-section {
    padding: 60px 30px;
  }
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.spotlight-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.spotlight-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.spotlight-name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.spotlight-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .spotlight-title {
    font-size: 36px;
  }
  
  .spotlight-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .spotlight-section {
    padding: 60px 30px;
  }
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.spotlight-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.spotlight-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.spotlight-name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.spotlight-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .spotlight-title {
    font-size: 36px;
  }
  
  .spotlight-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .spotlight-section {
    padding: 60px 30px;
  }
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.spotlight-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.spotlight-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.spotlight-name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.spotlight-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .spotlight-title {
    font-size: 36px;
  }
  
  .spotlight-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .spotlight-section {
    padding: 60px 30px;
  }
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.spotlight-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.spotlight-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.spotlight-name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.spotlight-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  
}

@media (max-width: 768px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .spotlight-title {
    font-size: 36px;
  }
  
  .spotlight-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .spotlight-section {
    padding: 60px 30px;
  }
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;

}
