html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust height as needed */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #1877F2; /* FB blue */
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #8B0000; /* Deep red */
}

.text-4-5xl {
    font-size: 2.916rem; /* 46.67px */
}

header {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
    font-size: 1.1rem; /* 17.6px */
    color: #1877F2;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #4299e1;
}

.card-content {
    font-size: 1.267rem; /* 20.27px */
    font-weight: bold;
}

.how-it-works-heading {
    font-size: 1.584rem; /* 25.34px */
    font-weight: bold;
}

.benefits-heading {
    font-size: 1.584rem; /* 25.34px */
    font-weight: bold;
}

.text-5xl-smaller {
    font-size: 2.667rem; /* 42.67px */
    color: #C8A2C8;
}

.how-it-works-card {
    background: linear-gradient(to right, #1877F2, #4299e1);
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin: 10px;
    text-align: center;
    flex: 1;
    font-size: 1.667rem; /* 20pt */
    font-weight: bold;
}

.faq-question {
    font-size: 1.367rem; /* 21.87px */
    font-weight: bold;
}

.faq-answer {
    font-size: 1.267rem; /* 20.27px */
    font-weight: bold;
}
@media (max-width: 768px) {
    .flex-wrap {
        flex-direction: column;
    }
    .w-full.md\:w-1\/2, .w-full.md\:w-1\/3 {
        width: 100%;
    }
    .px-48 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .text-6xl {
        font-size: 3rem;
    }
    .text-5xl {
        font-size: 2.5rem;
    }
    .text-3xl {
        font-size: 1.875rem;
    }
    .text-2xl {
        font-size: 1.5rem;
    }
    .text-xl {
        font-size: 1.125rem;
    }

    .hero-container {
        height: 50vh;
    }
}