:root {
    --yellow: #FFD834;
    --green: #09745F;
    --pink: #FFC3DC;
    --purple: #E8D7FF;
    --red: #FE5A36;
}

* {
    font-family: "Montserrat", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    width: 100%;
    height: auto;
    background-color: var(--purple);
}

header img {
    height: 80px;
    padding: 10px 0;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.nav, .dropbtn {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: var(--green);
    text-align: center;
    padding: 10px;
}

.nav:hover, .dropbtn:hover {
    text-shadow: 0px 0px 20px var(--green);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: var(--green);
    text-decoration: none;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: var(--purple);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.carouselSection {
    position: relative;
    width: 90%;
    margin: 30px auto;
    overflow: hidden;
}

.carouselContent {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
    flex-wrap: nowrap;
}

.carouselItem {
    flex: 0 0 calc(100% / 3);
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 1rem;
}

.carouselItem img {
    width: 40%;
    height: auto;
    margin-right: 20px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.carouselItem p {
    flex: 1;
    margin: 0;
}

.carouselItem p strong {
    font-family: "Londrina Solid", cursive;
    font-size: 1.1rem;
    color: var(--green);
}

.carouselBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nextBtn {
    right: 10px;
}

.prevBtn {
    left: 10px;
}

.carouselBtn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.fadeLeft,
.fadeRight {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 9;
}

.fadeLeft {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
}

.fadeRight {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
}

.access-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.access-section h1 {
    color: var(--green);
    font-family: "Londrina Solid", cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-top: 30px;
}

.access-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .carouselItem {
        flex: 0 0 calc(100% / 2);
    }

    .access-container {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .carouselItem {
        flex: 0 0 calc(100% / 3);
    }
}

.access-card {
    background-color: var(--purple);
    color: var(--green);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    max-width: 400px;
    width: 90%;
}

.access-card h3 {
    font-family: "Londrina Solid", cursive;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.access-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.access-note {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.access-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.access-links a {
    text-decoration: none;
    font-weight: bold;
    color: var(--green);
    border: 2px solid var(--green);
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.2s ease-in-out;
}

.access-links a:hover {
    background-color: var(--green);
    color: white;
}

footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: var(--purple);
    color: var(--green);
}

.bg-light {
    background-color: #E8D7FF !important
}