/* Réinitialisation CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Roboto', sans-serif;
}

/* Variables */
:root {
    --main-bg-color: #000;
    --text-color: #fff;
    --accent-color: #ff3b30;
    --card-bg: #111;
    --border-color: #333;
}

/* Base styles */
body {
    background-color: var(--main-bg-color);
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
header {
    background-color: #000;
    color: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {

    height: 65px;
    width: 135px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

/* Bouton burger - caché par défaut en desktop */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: #000;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
}
.hero-propos{
     background-color: #000;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    font-size: 40px;
    margin-bottom: -80px;
    font-weight: 500;
    letter-spacing: -1px;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background-color: #e62e20;
    transform: translateY(-3px);
}
    /* Styles pour le carrousel plein écran */
        .hero-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;    
            height: 690px;
            overflow: hidden;
            z-index: -1;
        }

        .hero-carousel .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-carousel .carousel-slide.active {
            opacity: 1;
        }

        /* Modifier le style de la section hero pour avoir un fond transparent */
        .hero {
            position: relative;
            z-index: 1;
            background: rgba(0, 0, 0, 0.6); /* Fond semi-transparent pour améliorer la lisibilité */
            padding: 200px 20px;
            text-align: center;
            color: white;
        }

        /* Supprimer le slideshow */
        .slideshow-container, .dot {
            display: none;
        }

/* Section de contenu avec alternance droite/gauche */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    padding-left: 120px;
    padding-right: 120px;
}

.content-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.content-row:last-child {
    border-bottom: none;
}

.content-row:nth-child(odd) {
    flex-direction: row;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-row:nth-child(odd) .content-text {
    text-align: left;
    padding-left: 20px;
}

.content-row:nth-child(even) .content-text {
    text-align: right;
    padding-right: 20px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #eee;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image {
    flex: 1;
    min-width: 300px;
    padding: 60px;
}

.content-image img {
    width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.text-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255,255,255,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

.text-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.1);
}

.text-card .section-title-accent {
    text-align: center !important;
    display: block !important;
    margin: 0 auto 25px !important;
}

.section-title-accent::after {
    content: '';
    position:absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(-310%);
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
}

/* Titre de section avec accent */
.section-title-accent {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}

.content-row:nth-child(even) .section-title-accent:after {
    left: auto;
    right: 0;
}


/* Product Grid */
.products-section {
    padding: 80px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 60px;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255,255,255,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.1);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-details {
    padding: 25px;
}

.product-category {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.product-description {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.6;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-reference {
    font-size: 14px;
    color: #aaa;
}


/* Hero Section pour pilotes */
.pilots-hero {
    background-color: #000;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
}

.pilots-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.pilots-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Pilotes Section */
.pilots-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.pilot-container {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.pilot-container:last-child {
    margin-bottom: 0;
}

.pilot-container.reverse {
    flex-direction: row-reverse;
}

.pilot-image {
    flex: 1;
    max-width: 500px;
    min-width: 300px;
}

.pilot-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pilot-info {
    flex: 1;
    padding: 40px;
}

.pilot-name {
    font-size: 32px;
    margin-bottom: 10px;
    color: #fff;
}

.pilot-category {
    color: var(--accent-color);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.pilot-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #eee;
    margin-bottom: 30px;
}

.pilot-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat {
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}

.pilot-social {
    display: flex;
    gap: 15px;
}

.social-link {
    padding: 12px 20px;
    background-color: var(--card-bg);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--accent-color);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 60px 20px 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}
/* Contact Secion */
        .contact-page{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .contact-body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #000000;
            color: #ffffff;
            line-height: 1.6;
        }

        .contact-section {
            background: #000000;
            padding: 60px 40px;
            margin: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-title {
            color: #ff4444;
            font-size: 2.5em;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .contact-subtitle {
            color: #cccccc;
            font-size: 1.1em;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .contact-info {
            background: #0a0a0a;
            padding: 30px;
            border-radius: 12px;
            border-left: 4px solid #ff4444;
        }

        .info-item {
            margin-bottom: 25px;
        }

        .info-item h3 {
            color: #ff4444;
            font-size: 1.2em;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .info-item p {
            color: #cccccc;
            font-size: 1em;
            line-height: 1.5;
        }

        .contact-form {
            background: #0a0a0a;
            padding: 30px;
            border-radius: 12px;
            border-left: 4px solid #ff4444;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ffffff;
            font-weight: 600;
            font-size: 0.9em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #555555;
            border-radius: 8px;
            font-size: 1em;
            transition: all 0.3s ease;
            background: #2a2a2a;
            color: #ffffff;
            font-family: inherit;
            position: relative;
        }
         .form-group input:hover,
        .form-group textarea:hover,
        .form-group select:hover {
            border-color: #666666;
            background: #333333;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #888888;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff4444;
            background: #1a1a1a;
            box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Animation pour le select */
        .form-group select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ff4444" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
            padding-right: 50px;
            background-color: #2a2a2a;
        }

        .form-group select:focus {
            background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ff4444" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="18,15 12,9 6,15"></polyline></svg>');
            animation: selectPulse 0.3s ease;
        }

        @keyframes selectPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .form-group select option {
            background: #2a2a2a;
            color: #ffffff;
            padding: 12px 15px;
            border: none;
            font-size: 1em;
        }

        .form-group select option:hover {
            background: #3a3a3a;
        }

        .form-group select option:checked,
        .form-group select option:focus {
            background: #ff4444;
            color: #ffffff;
        }

         /* Effet de brillance sur le select */
        .form-group select::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 68, 68, 0.1) 50%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            border-radius: 8px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #888888;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff4444;
            background: #000000;
            box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: #333;
            color: #ffffff;
        }

        .error-message {
            color: #ff6b6b;
            font-size: 0.85em;
            margin-top: 5px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .error-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        .form-group.error input,
        .form-group.error textarea,
        .form-group.error select {
            border-color: #ff6b6b;
            background: rgba(255, 107, 107, 0.1);
        }

        .form-group.success input,
        .form-group.success textarea,
        .form-group.success select {
            border-color: #4ecdc4;
            background: rgba(78, 205, 196, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: #ff4444;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            background: #ff5555;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .success-message {
            background: #4ecdc4;
            color: #1a1a1a;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-top: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            font-weight: 600;
        }

        .success-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin-top: 20px;
            gap: 10px;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-top: 4px;
            transform: scale(1.2);
            accent-color: #ff4444;
        }

        .checkbox-group label {
            margin-bottom: 0;
            font-size: 0.9em;
            font-weight: normal;
            text-transform: none;
            letter-spacing: normal;
            color: #cccccc;
            flex: 1;
        }

        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 30px 20px;
                margin: 10px;
            }
            
            .contact-title {
                font-size: 2em;
            }

            .contact-form,
            .contact-info {
                padding: 20px;
            }
        }

        /* Animation d'entrée */
        .contact-section {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* Styles responsives pour le menu mobile */
@media screen and (max-width: 768px) {
    .burger-menu {
        display: flex; /* Afficher le bouton burger en mobile */
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #000000;
        flex-direction: column;
        justify-content: flex-start; 
        align-items: center;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 100px; 
    }
        
    .nav-menu.active {
        right: 0; /* Affiche le menu quand activé */
    }
        
    .nav-menu li {
        margin: 15px 0;
    }
        
    /* Animation du burger en croix */
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
        
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
        
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
        /* Fond semi-transparent quand le menu est ouvert */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
        z-index: 998;
    }
        
    .overlay.active {
        display: block;
    }
    .logo {
        height: 60px;
        width: 100px;
    }
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .footer-column {
        flex: 100%;
    }

    .featured-btn:after {
        width: 90%; 
        max-width: 300px; 
        bottom: 0px; 
    }
    
       .pilots-hero h1 {
        font-size: 36px;
    }
    
    .pilot-container, .pilot-container.reverse {
        flex-direction: column;
    }
    
    .pilot-info {
        padding: 30px 10px;
    }
    
    .pilot-stats {
        grid-template-columns: 1fr;
    }
    .content-row, .content-row:nth-child(odd), .content-row:nth-child(even) {
        flex-direction: column;
    }
    
    .content-text, .content-row:nth-child(odd) .content-text, .content-row:nth-child(even) .content-text {
        text-align: center;
        padding: 20px;
    }
    
    .content-text p {
        text-align: justify;
    }
    
    .hero-propos {
            background-color: #000;
            color: #fff;
            padding: 60px 20px 40px;
            text-align: center;
            position: relative;
            background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8));
            background-size: cover;
            background-position: center;
        }

        .hero-propos h1 {
            font-size: clamp(24px, 6vw, 48px);
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -1px;
        }

     
        .content-section {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px 15px;
        }

        .content-row {
            margin-bottom: 40px;
            width: 100%;
        }

        .content-row:last-child {
            margin-bottom: 0;
        }

        .text-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(255,255,255,0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 25px 20px;
            margin: 0 auto;
            max-width: 100%;
        }

        .text-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255,255,255,0.12);
        }

       .section-title-accent {
           font-size: clamp(20px, 5vw, 28px) !important;
            color: var(--accent-color) !important;
            text-transform: uppercase !important;
            font-weight: 500 !important;
            position: relative !important;
            display: block !important;
            padding-bottom: 15px !important;
            text-align: center !important;
            margin: 0 auto 25px !important;
            width: 100% !important;
        }

        .section-title-accent::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .text-card p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 18px;
            color: #eee;
            text-align: justify;
        }

        .text-card p:last-child {
            margin-bottom: 0;
        }

        footer {
            background-color: #0a0a0a;
            color: #fff;
            padding: 40px 15px 20px;
            border-top: 1px solid #333;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 100%;
        }

        .footer-column {
            width: 100%;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            opacity: 0.8;
            transition: opacity 0.3s;
            font-size: 15px;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent-color);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icons a {
            padding: 10px 15px;
            background-color: var(--card-bg);
            border-radius: 6px;
            opacity: 0.8;
            transition: all 0.3s;
            font-size: 14px;
        }

        .social-icons a:hover {
            opacity: 1;
            background-color: var(--accent-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-bottom p {
            opacity: 0.6;
            font-size: 14px;
        }
}   
