@charset "UTF-8";

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

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #f5f5f5;
    color: #1d2630;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-content {
    margin-top: 80px; /* Compense la navbar fixe de 80px */
    min-height: calc(100vh - 80px);
    padding-top: 0;
}

.main-content > .banner-section:first-child {
    margin-top: 60px !important;
    padding-top: 0 !important;
}

.main-content > .banner-section:last-child {
    margin-top: 100px !important;
    margin-bottom: 40px !important;
}

.main-content > *:not(.banner-section):first-child,
.main-content > *:not(.banner-section) {
    margin-top: 0;
    padding-top: 0;
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 80px;
        padding-top: 0;
    }
    
    .main-content > *:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}