/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Barlow Semi Condensed', sans-serif;
    color: white;
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    scrollbar-width: none;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Agenda Section */
.agenda-container {
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 100px; /* Increased padding before the footer */
    text-align: center;
    position: relative;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.main-heading {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #00ffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* TraderX Statement */
.traderx-statement {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 50px;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.5;
}

/* Agenda Grid Layout */
.agenda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    justify-items: center;
}

/* Agenda Item Layout */
.agenda-item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    justify-content: flex-start;
}

/* Image Styling (No Circle Border) */
.image-container img {
    width: 150px;
    height: 150px;
    object-fit: cover; /* Keep the image rectangular or its native aspect ratio */
}

/* Agenda Descriptions */
.agenda-description {
    max-width: 400px;
    text-align: left;
}

.agenda-description p {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
}

.highlight {
    font-weight: 700;
    color: #ff00ff;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .agenda-grid {
        grid-template-columns: 1fr;
    }

    .main-heading {
        font-size: 3rem;
    }

    .traderx-statement {
        font-size: 1.2rem;
    }

    .agenda-item {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
    }

    .image-container {
        margin-bottom: 20px;
    }

    .agenda-description {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .agenda-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .traderx-statement {
        font-size: 1rem;
    }

    .agenda-description p {
        font-size: 0.9rem;
    }
}
