/* General Styles */
body {
    font-family: 'Lexend', sans-serif;
}
.hero-background {
    background: linear-gradient(to bottom right, #E78F9230, #29B35030);
}
.text-h1 {
    color: #000000;
}
.text-p {
    color: #454545;
}

/* Navbar Styles */
.navbar-nav .nav-link {
    color: #454545;
    cursor: pointer !important;
}
.navbar-nav .nav-link:hover {
    text-decoration: underline;
}

/* Button Styles */
.btn-get-started {
    background-color: #89D09B;
    color: #ffffff;
}

/* Section Styles */
.about-section {
    padding: 60px 0;
    text-align: center;
}
.tab-content {
    margin-top: 20px;
}

/* Gray Text Colors */
.gray-text-1 {
    color: #7B7B7B;
}
.gray-text-2 {
    color: #A3A3A3;
}

/* Navbar Fixed Styles */
#navbar {
    background-color: rgba(255, 255, 255, 0.9);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#navbar.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Scroll Padding for Sections */
section {
    scroll-margin-top: 50px;
}

