@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;700&display=swap');

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    body {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    body {
        width: 100%;
        margin: 0;
    }
    .container,
    .navbar,
    .content-section,
    .footer {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px;
    }
    .banner-section img {
        width: 100% !important;
    }
    .banner-overlay {
        max-width: 100% !important;
        padding: 20px;
    }
    .hero-text {
        font-size: 16px !important;
        padding: 6px 10px !important;
    }
    .banner-overlay h2 {
        display: none !important;
    }
    .banner-overlay .btn {
        font-size: 16px;
        padding: 10px 15px;
    }
    .banner-section .position-absolute {
        display: none !important;
    }
}

.navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background-color: white !important;
    padding: 10px 20px !important;
    width: 100% !important;
}

.navbar-brand {
    margin-left: 0 !important;
}

.navbar-nav {
    margin-left: auto !important;
    display: flex !important;
    gap: 15px !important;
}

.navbar-nav .nav-item {
    list-style: none !important;
}

.navbar-nav .nav-link {
    color: black !important;
    font-weight: bold !important;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 24px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 8px;
}

.banner-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.banner-overlay {
    max-width: 90%;
    text-align: center;
}

.content-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
}

.content-section img {
    width: 50%;
    height: auto;
    border-radius: 8px;
}

.content-text {
    width: 50%;
    text-align: left;
}

.content-section:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 767px) {
    .content-section {
        flex-direction: column;
        text-align: center;
    }
    .content-section img, .content-text {
        width: 100%;
    }
}

.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
}
