body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    color: whitesmoke;
    background-color: #000;
}

header {
    background-color: transparent;
    /* Add transparency for a sleek look */
    padding: 0px;
    margin: 0;
    font-weight: 100;
    z-index: 1000;
    position: absolute;
    /* Position the header on top of the hero section */
    top: 0;
    left: 0;
    width: 100%;
    /* Ensure the header spans the full width of the viewport */
}

.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* Divide the hero section into 3 equal columns */
    align-items: center;
    /* Vertically center the content */
    color: whitesmoke;
    padding: 0;
}

.hero1 {
    position: relative;
    background: url('../../images/AboutCover.jpeg') no-repeat center center/cover;
}

.hero2 {
    background: url('../../images/AboutCover2.png') no-repeat center center/cover;
}

@media (max-width: 768px) {
    .hero {
        /* height: 50%; */
        /* width: 100%; */
        /* height: 80vh; */
        display: block;
    }

    .hero2 {
        background-position: 30% center;
    }

    .hero-content {
        margin: 0;
        padding-top: 80px;
        text-align: center;
        /* background-color: rgba(0, 0, 0, 0.6); */
        /* Transparent black background */
        /* border-radius: 8px; */
        /* Rounded corners */
        /* padding: 0px 20px 20px 20px; */
        /* Add padding inside the content */
        /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
        /* max-width: 80%; */
        /* Optional: Add a subtle shadow for depth */
        /* width: 100%; */
    }

    .extra-wrapper {
        background-color: rgba(0, 0, 0, 0.6);
    }
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
        background-color: rgba(0, 0, 0, 0.6);
        /* Transparent black background */
        border-radius: 8px;
        /* Rounded corners */
        padding: 0px 20px 20px 20px;
        /* Add padding inside the content */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        max-width: 600px;
        /* Optional: Add a subtle shadow for depth */
    }

    .hc1 {
        grid-column: 1 / 4;
        margin-bottom: 0px;
        margin-left: 15%;
    }

    .hc2 {
        grid-column: 2 / 4;
        margin-bottom: 0px;
        margin-left: 20%;
    }
}


.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: -4px;
    line-height: 1.0;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.hero-content li {
    font-size: 1.1rem;
    /* Slightly larger font size */
    margin-bottom: 2px;
    /* Add spacing between list items */
}

.cta-btn-group {
    display: flex;
    /* Align buttons horizontally */
    gap: 20px;
    /* Add spacing between the buttons */
    margin-top: 20px;
    /* Add spacing above the button group */
}

.cta-btn {
    display: inline-flex;
    /* Use flexbox for alignment */
    align-items: center;
    /* Vertically center the text and arrow */
    justify-content: center;
    /* Center the content horizontally */
    padding: 10px 20px;
    /* Add spacing inside the button */
    border: 1px solid whitesmoke;
    /* Add a border around the button */
    color: whitesmoke;
    /* Set the text color */
    font-size: 1rem;
    /* Adjust the font size */
    font-weight: 700;
    /* Make the text bold */
    text-decoration: none;
    /* Remove underline from the link */
    background-color: transparent;
    /* Transparent background */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

.cta-btn:hover {
    background-color: whitesmoke;
    /* Change background color on hover */
    color: black;
    /* Change text color on hover */
}

.cta-arrow {
    margin-left: 10px;
    /* Add spacing between the text and the arrow */
    font-size: 1.2rem;
    /* Slightly larger size for the arrow */
    transition: margin-left 0.3s ease;
    /* Smooth transition for hover effects */
}

.cta-btn:hover .cta-arrow {
    margin-left: 15px;
    /* Move the arrow slightly on hover */
}