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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
}

.animate-fade-up {
    transform: translateY(50px);
}

.animate-fade-up.animate-in {
    transform: translateY(0);
}

.animate-fade-down {
    transform: translateY(-50px);
}

.animate-fade-down.animate-in {
    transform: translateY(0);
}

.animate-fade-left {
    transform: translateX(-50px);
}

.animate-fade-left.animate-in {
    transform: translateX(0);
}

.animate-fade-right {
    transform: translateX(50px);
}

.animate-fade-right.animate-in {
    transform: translateX(0);
}

.animate-scale {
    transform: scale(0.8);
}

.animate-scale.animate-in {
    transform: scale(1);
}

.animate-rotate {
    transform: rotate(-10deg) scale(0.9);
}

.animate-rotate.animate-in {
    transform: rotate(0deg) scale(1);
}

.scroll-animate {
    transition-delay: var(--animation-delay, 0ms);
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slide-rotate {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flip-in {
    0% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

/* Header styles are now in header.css */

/* ============================================
   PITCH HERO SECTION
   ============================================ */

.pitch-hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px) brightness(0.4);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.diagonal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 3;
}

.hero-content-container {
    position: relative;
    z-index: 4;
    padding: 60px 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Edition Text */
.edition-text {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

/* SIAB Title */
.siab-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-in-title {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.siab-text {
    color: #ffffff;
    font-size: 100px;
    font-weight: 700;
    letter-spacing: 4px;
}

.siab-description {
    font-size: 18px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Bottom Content */
.hero-bottom-content {
    margin-top: 30px;
    align-items: flex-end;
}

/* CTA Section */
.cta-section {
    text-align: left;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-subtitle {
    font-size: 24px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.4;
}

/* Dates and Location Section */
.dates-location-section {
    text-align: right;
}

.dates-label {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 300;
}

.dates-boxes {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.date-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 8px;
}

.date-box-blue {
    background: #000000;
}

.date-box-green {
    background: #1AA45A;
}

.dates-month {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 500;
}

.location-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: #ffffff;
    font-size: 20px;
}

.location-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 1024px) {
    .siab-title {
        font-size: 60px;
    }

    .logo-in-title {
        height: 120px;
    }

    .siab-text {
        font-size: 80px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content-container {
        padding: 40px 20px 40px;
    }

    .edition-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .siab-title {
        font-size: 40px;
        gap: 12px;
    }

    .logo-in-title {
        height: 80px;
    }

    .siab-text {
        font-size: 50px;
    }

    .cta-title {
        font-size: 28px;
    }

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

    .date-box {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .dates-month {
        font-size: 20px;
    }

    .location-info {
        font-size: 16px;
    }

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

    .hero-bottom-content {
        margin-top: 40px;
    }

    .cta-section {
        text-align: center;
        margin-bottom: 30px;
    }

    .cta-title {
        font-size: 28px;
    }

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

    .dates-location-section {
        text-align: center;
    }

    .dates-boxes {
        justify-content: center;
    }

    .location-info {
        justify-content: center;
    }

    .date-box {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .dates-month {
        font-size: 18px;
    }
}

/* ============================================
   APPEL À PROJETS SECTION
   ============================================ */

.appel-projets-section {
    padding: 80px 40px;
    background: #ffffff;
    overflow: visible;
}

.appel-projets-section .container {
    overflow: visible;
}

.appel-projets-section .row {
    overflow: visible;
}

.appel-projets-section .col-lg-5 {
    overflow: visible;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.3;
}

.title-prefix {
    display: block;
    margin-bottom: 10px;
}

.title-main {
    display: block;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.content-paragraph {
    font-size: 18px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

.content-paragraph strong {
    font-weight: 700;
    color: #000000;
}

/* Buttons Container */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    overflow: visible;
}

.button-wrapper {
    position: relative;
    overflow: visible;
}

.btn-download {
    width: 100%;
    padding: 18px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
    text-decoration: none;
    display: block;
}

.btn-download-light {
    background: #E8F4FD;
    color: #000000;
    border-color: #ffffff;
}

.btn-download-light:hover {
    background: #d1e9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-download-dark {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.btn-download-dark:hover {
    background: #1a3d6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Tooltip Box */
.tooltip-box {
    position: absolute;
    left: 0;
    top: calc(100% + 15px);
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    min-width: 280px;
    max-width: 100%;
    z-index: 1000;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    display: block !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.tooltip-link {
    pointer-events: auto;
}

.tooltip-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.tooltip-link {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.tooltip-link:hover {
    color: #1AA45A;
    text-decoration: underline;
}

/* Desktop - Position tooltip en dessous ou ajustée pour rester visible */
@media (min-width: 1201px) {
    .tooltip-box {
        left: 0;
        top: calc(100% + 15px);
        transform: none;
        width: 100%;
        max-width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
}

@media (max-width: 992px) {
    .appel-projets-section {
        padding: 60px 30px;
    }

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

    .content-paragraph {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .appel-projets-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .title-main {
        font-size: 24px;
    }

    .section-content {
        gap: 20px;
        margin-bottom: 30px;
    }

    .content-paragraph {
        font-size: 15px;
    }

    .buttons-container {
        gap: 20px;
    }

    .btn-download {
        padding: 16px 20px;
        font-size: 15px;
    }

    .tooltip-box {
        position: static;
        top: 0;
        left: 0;
        transform: none;
        margin-top: 15px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: block;
    }
}

/* ============================================
   AVERTISSEMENT SECTION
   ============================================ */

.avertissement-section {
    padding: 80px 40px;
    background: #000000;
}

.avertissement-header {
    text-align: center;
    margin-bottom: 50px;
}

.avertissement-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.avertissement-subtitle {
    font-size: 20px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.avertissement-card {
    background: #ffffff !important;
    border-radius: 16px;
    padding: 50px 40px 60px 40px !important; /* Plus de padding en bas */
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    overflow: visible !important; /* S'assurer que rien n'est coupé */
}

.warning-title {
    font-size: 28px;
    font-weight: 700;
    color: #d1373a !important;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    z-index: 11;
}

.warning-text {
    font-size: 18px;
    color: #333333 !important;
    line-height: 1.8;
    margin-bottom: 35px;
    position: relative;
    z-index: 11;
}

.warning-text strong {
    font-weight: 700;
    color: #d1373a !important;
}

.documents-heading {
    font-size: 22px;
    font-weight: 700;
    color: #333333 !important;
    margin-bottom: 20px;
    position: relative;
    z-index: 11;
}

.documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.documents-list li {
    font-size: 18px;
    color: #333333 !important;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    padding-bottom: 5px; /* Espacement supplémentaire */
    position: relative;
    z-index: 11;
}

.documents-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.documents-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .avertissement-section {
        padding: 60px 30px;
    }

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

    .avertissement-subtitle {
        font-size: 18px;
    }

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

    .warning-title {
        font-size: 24px;
    }

    .warning-text {
        font-size: 16px;
    }

    .documents-heading {
        font-size: 20px;
    }

    .documents-list li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .avertissement-section {
        padding: 50px 20px;
    }

    .avertissement-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

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

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

    .warning-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .warning-text {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .documents-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .documents-list li {
        font-size: 15px;
        padding-left: 25px;
    }
}

/* ============================================
   FORMULAIRE SECTION
   ============================================ */

.formulaire-section {
    padding: 80px 40px;
    background: #ffffff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.formulaire-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-start-form {
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-start-form:hover {
    background: #1a3d6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Form Modal */
.form-modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.85) !important;
    z-index: 999999 !important;
    overflow-y: auto;
    padding: 0;
}

.form-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    width: calc(100% - 40px);
    margin: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.btn-close-form {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D5373A;
    color: #ffffff;
    z-index: 10;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-close-form:hover {
    background: #000000;
}

/* Progress Indicator */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: #d1373a;
    color: #ffffff;
}

.progress-step.completed .step-circle {
    background: #1AA45A;
    color: #ffffff;
}

.progress-line {
    width: 200px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 20px;
    position: relative;
    top: -25px;
}

.step-label {
    margin-top: 10px;
    font-size: 14px;
    color: #999999;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #d1373a;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #000000;
}

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

.char-count {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666666;
    text-align: right;
}

/* File Upload */
.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-input {
    display: none;
}

.file-label {
    background: #e0e0e0;
    color: #333333;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.file-label:hover {
    background: #d0d0d0;
}

.file-name {
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #000000;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.6;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-form {
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-next,
.btn-submit {
    background: #d1373a;
    color: #ffffff;
}

.btn-next:hover,
.btn-submit:hover {
    background: #b02e31;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 55, 58, 0.3);
}

.btn-previous {
    background: #d1373a;
    color: #ffffff;
}

.btn-previous:hover {
    background: #b02e31;
}

.btn-submit {
    background: #8b1e20;
    font-size: 18px;
    padding: 18px 50px;
}

.btn-submit:hover {
    background: #6b1618;
}

/* Responsive */
@media (max-width: 992px) {
    .formulaire-section {
        padding: 60px 30px;
    }

    .formulaire-title {
        font-size: 28px;
    }

    .form-modal-content {
        padding: 30px 20px;
        width: calc(100% - 40px);
        margin: 20px;
        max-height: calc(100vh - 40px);
    }

    .progress-line {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .formulaire-section {
        padding: 50px 20px;
    }

    .formulaire-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .btn-start-form {
        padding: 16px 30px;
        font-size: 16px;
    }

    .form-modal {
        padding: 0;
    }

    .form-modal-content {
        padding: 25px 15px;
        width: calc(100% - 20px);
        margin: 10px;
        max-height: calc(100vh - 20px);
    }

    .btn-close-form {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .progress-line {
        width: 60px;
        margin: 0 10px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .step-label {
        font-size: 12px;
    }

    .file-upload-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-form {
        width: 100%;
    }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer-section {
    background: #000000;
    color: #ffffff;
    position: relative;
    margin-top: 20px;
}

.flags-row {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.flag-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.flag-icon:hover {
    transform: scale(1.2);
    border-color: #1AA45A;
}

.footer-main {
    padding: 60px 40px;
}

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

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: none;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
    background: #1AA45A;
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer-location .location-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1AA45A;
    display: inline-block;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #1AA45A;
    padding-left: 5px;
}

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

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

.footer-contacts a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-contacts a:hover {
    color: #1AA45A;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

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

.footer-legal a:hover {
    color: #1AA45A;
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Responsive adjustments for footer */
@media (max-width: 1024px) {
    .footer-main {
        padding: 50px 30px;
    }

    .footer-logo-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 20px;
    }

    .footer-logo-img {
        height: 60px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-links a,
    .footer-contacts a {
        font-size: 15px;
    }

    .footer-copyright {
        padding: 15px 20px;
    }

    .copyright-text {
        font-size: 12px;
    }
}

