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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

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

.brain-icon img {
    width: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.practice-name {
    font-size: 12px;
    font-weight: 500;
    color: #008B8B;
    line-height: 1.2;
}

.doctor-name {
    font-size: 11px;
    font-weight: 400;
    color: #008B8B;
    margin-top: 2px;
}

/* Navigation */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #008B8B;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #008B8B;
    transition: width 0.3s ease;
}

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

.nav-menu a.active {
    color: #008B8B;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
    background-color: #008B8B;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    width: 40px;
    height: 40px;
    background-color: #008B8B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.phone-number {
    font-size: 12px;
    font-weight: 500;
    color: #333;
}


/* Menu Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #008B8B;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================ */
/* CSS: MODIFIER la section @media (max-width: 768px) */
/* ============================================ */

@media (max-width: 768px) {
    .header-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .brain-icon img {
        width: 40px;
    }
    
    .practice-name {
        font-size: 10px;
    }
    
    .doctor-name {
        font-size: 9px;
    }

    /* Menu Hamburger Mobile - NOUVEAU */
    .menu-toggle {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 30px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .navigation.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 20px 30px;
        font-size: 16px;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        background-color: #f8f9fa;
    }

    .phone-number {
        display: none;
    }
    
    .phone-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero {
        height: 60vh;
        margin-top: 70px;
    }
    
}
/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Carousel Styles */
.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #008B8B;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #008B8B;
    transform: scale(1.2);
}

.hero-content {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

/* Floating Text Animation */
.floating-text {
    animation: floatUp 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.floating-buttons {
    animation: floatUp 1.5s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text-overlay {
    background-color: rgba(0, 139, 139, 0.85);
    padding: 25px 40px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background-color: #008B8B;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.btn-primary:hover {
    background-color: #20B2AA;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
}

.btn-secondary {
    background-color: white;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary .fa-whatsapp {
    color: #25D366;
}

/* Info Cards Section - MODIFICATION PRINCIPALE */
.info-cards-section {
    background-color: transparent;
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -80px; /* Remonte les cards dans la section hero avec plus d'espace */
}

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

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: start;
}

.info-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 65px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    transform: translateY(0);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 24px;
    color: #333;
}

.info-card:hover .card-icon {
    background-color: #008B8B;
    border-color: #008B8B;
}

.info-card:hover .card-icon i {
    color: #ffffff;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.card-content p {
    margin-bottom: 10px;
}

.card-content p:last-child {
    margin-bottom: 0;
}

.card-content strong {
    color: #333;
    font-weight: 600;
}

/* Gallery Section */
.gallery-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.05) 0%, rgba(32, 178, 170, 0.05) 100%);
    z-index: 1;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gallery-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #008B8B, #20B2AA);
    border-radius: 2px;
}

.gallery-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item.large {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-item:not(.large) {
    grid-column: span 3;
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.8) 0%, rgba(32, 178, 170, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Additional Photos */
.additional-photos {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}

.photo-item {
    min-width: 350px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 15px;
    }
    
    .gallery-item.large {
        grid-column: span 4;
    }
    
    .gallery-item:not(.large) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-title {
        font-size: 32px;
    }
    
    .gallery-subtitle {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 150px);
        gap: 10px;
    }
    
    .gallery-item.large {
        grid-column: span 6;
        grid-row: span 2;
    }
    
    .gallery-item:not(.large) {
        grid-column: span 3;
        grid-row: span 2;
    }
    
    .gallery-content h3 {
        font-size: 18px;
    }
    
    .gallery-content p {
        font-size: 12px;
    }
    
    .additional-photos {
        gap: 10px;
    }
    
    .photo-item {
        min-width: 150px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(9, 120px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-item:not(.large) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .additional-photos {
        gap: 8px;
    }
    
    .photo-item {
        min-width: 120px;
        height: 100px;
    }
}

/* Next Section */
.next-section {
    background-color: #f8f9fa;
    padding: 250px 0 80px 0; /* Plus de padding en haut pour accueillir les cards */
    position: relative;
    z-index: 1;
    min-height: 40vh;
}

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

.section-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.section-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.whatsapp-bubble {
    background-color: #f8f9fa;
    padding: 12px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-bubble span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover .whatsapp-bubble {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-icon i {
    font-size: 28px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 15px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .brain-icon img {
        width: 40px;
    }
    
    .practice-name {
        font-size: 10px;
    }
    
    .doctor-name {
        font-size: 9px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .phone-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .phone-number {
        font-size: 11px;
    }
    
    .hero {
        height: 60vh;
        margin-top: 140px;
    }
    
    .hero-content {
        bottom: 100px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-text-overlay {
        padding: 25px 35px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        min-width: 250px;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .info-cards-section {
        margin-top: -100px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 20px;
    }
    
    .card-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .card-content {
        font-size: 13px;
    }
    
    .next-section {
        padding: 200px 0 60px 0;
    }
    
    .section-content h2 {
        font-size: 28px;
    }
    
    .section-content p {
        font-size: 16px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon i {
        font-size: 24px;
    }
    
    .whatsapp-bubble {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-text-overlay {
        padding: 20px 25px;
    }
    
    .btn-primary, .btn-secondary {
        min-width: 200px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
    color: #ffffff;
    padding: 80px 0 30px 0;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.3));
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-section ul li i {
    color: #ffffff;
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .practice-name {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.footer-logo-text .doctor-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: #ffffff;
    font-size: 18px;
    margin-top: 3px;
    min-width: 24px;
}

.footer-contact-item div {
    flex: 1;
}

.footer-contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: #ffffff;
}

.footer-social a i {
    font-size: 18px;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 20px 0;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 13px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}