.hero-section {
   background-image: url('hero1.png');
        /* Optional: Add other background properties for better control */
        background-size: cover; /* Resizes the image to cover the entire div */
        background-position: center; /* Centers the image */
        background-repeat: no-repeat; /* Prevents the image from repeating */
        height: 650px; /* Example height for the div */
        width: 100%; /* Example width for the div */
}

.join-waitlist-btn:hover, .join-waitlist-btn:focus {
    background-color: #e64a19 !important;
    border-color: #e64a19 !important;
    color: #fff !important;
}

.headerTitle {
    font-family: "Roboto Serif", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
        "wdth" 100,
        "GRAD" 0;
    color: white;
    font-size: 48px;
}

.headerSubtitle {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    color: white;
    font-size: 20px;
}

.problemText{
    text-align: justify;
}

.sectionHeader {
    font-family: "Roboto Serif", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
        "wdth" 100,
        "GRAD" 0;
    color: #FF5722;
    font-size: 32px;
}

.sectionJumboText {
    font-family: "Roboto Serif", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
        "wdth" 100,
        "GRAD" 0;
    color: black;
    font-size: 40px;
    margin-top: 10px;
}

.joinSection {
    height: 750px;
    background-color: #3F51B5;
    background: linear-gradient(135deg, #D9D9D9 0%, #3F51B5 100%);
    font-family: "Roboto Serif", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
        "wdth" 100,
        "GRAD" 0;
    color: white;
    font-size: 20px;
}

.joinSection p {
    text-align: left;
}

.contactSection {
    background-color: #3F51B5;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

.accordion-button{
    font-weight: bold !important;
}


/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, #3F51B5 0%, #2196F3 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 20px 30px;
    position: relative;
    width: 50%;
}
.timeline-item.left {
    left: 0;
}
.timeline-item.right {
    left: 50%;
}
.timeline-item .timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 12px rgba(63,81,181,0.08);
}
.timeline-item.left .timeline-content {
    margin-left: 0;
    margin-right: 40px;
    text-align: right;
}
.timeline-item.right .timeline-content {
    margin-left: 40px;
    text-align: left;
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 32px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF5722;
    border: 4px solid #fff;
    z-index: 1;
}
.timeline-item.left::before {
    right: -10px;
}
.timeline-item.right::before {
    left: -10px;
}

.footer{
    text-align: center;
}

@media (max-width: 767px) {
    .timeline::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
    }
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin: 0 0 20px 0;
        text-align: left;
    }
    .timeline-item::before {
        left: 0;
        right: auto;
    }
}