body {
    height: 100%;
    font-family: 'Raleway';
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow: hidden; /* Prevent horizontal scrolling */
}

.header {
    background-color: #007acc;
    color: white;
    text-align: center;
    padding: 1em;
    transition: background-color 0.5s ease;
}

    .header:hover {
        background-color: #005f99;
    }

.content {
    padding: 2em;
    background: url("../images/blue_team_2.png");
    background-size: cover;
    background-attachment: fixed; /* Ensure the background is fixed */

    background-repeat: repeat-y;
    background-position: center center;
    transition: background-position 0.5s ease;
    height: 100vh; /* Set height to cover the viewport */
    width: 100%; /* Full width */
    box-sizing: border-box; /* Include padding and border in width */
}

.description {
    
    display: none;
    
    width: 70%; /* Adjust width for smaller screens */
    max-width: 1024px; /* Max width for larger screens */
    margin: 1em auto; /* Center elements */
    font-size: 30px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;

}

.features {
    width: 70%; /* Adjust width for smaller screens */
    max-width: 1024px; /* Max width for larger screens */
    margin: 1em auto; /* Center elements */
    font-size: 15px;
    color: #333;
    padding-right: 30px;
    padding-bottom: 20px;
}

.description {
    font-size: large;
}

.features {
    background-color: hsl(190, 30%, 90%);
    box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

.features-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: Normal;
    padding-top: 15px;
    text-align: center;
    color: #c16708;
}

.li-title {
    font-size: 20px;
    font-weight: normal;
    color: darkblue;
}

.features ul li {
    padding: 0.5em 0;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

    .features ul li:hover {
        transform: scale(1.05);
        background-color: white;
        cursor: pointer;
        padding: 10px;
        border-radius: 5px;
        font-size: 18px;
    }


.homepage-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1em;
    padding-top: 10px;
    background-color: #f7f7f7;
    height: auto; /* Auto height to accommodate items */
    width: 100%; /* Full width */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    box-sizing: border-box; /* Include padding in width calculation */
    margin-bottom: 10px; /* Add some space below the menu */
}

.favicon img {
    width: 40px; /* Smaller favicon for responsiveness */
    height: 40px;
}


.get-started-link {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background-color: goldenrod;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 25px; /* Keep the rounded lozenge shape */
    transition: background-color 0.3s ease;
    width: auto; /* Ensure the button width is auto */
}

    .get-started-link:hover {
        background-color: darkgoldenrod;
    }

.read-more-link {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background-color: blue;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 25px; /* Keep the rounded lozenge shape */
    transition: background-color 0.3s ease;
    width: auto; /* Ensure the button width is auto */
    margin-left: 30px;
}

    .read-more-link:hover {
        background-color: darkblue;
    }

.button-container {
    display: flex;
    align-items: center; /* Aligns buttons vertically */
    gap: 30px; /* Adds 30px space between the buttons */
    margin-top: 20px;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 0em;
        padding-left:0em;
        padding-top: 1.0em;
    }

    .features {
        height: 90%;
        width: 85%; 
        padding: 0px;
        margin-top: 0px;

    }

    .features-header {
        display: flex;
        flex-direction: column;
        font-size: 1.5em;
        font-weight: Normal;
        width:100%;
        padding-top: 15px;
        padding-left: 0px;
        text-align: center;
        color: #c16708;
    }

    .features-list {
        height:80%;
        padding-right: 15px;
        overflow-y: auto;
    }

    .li-title {
        font-size: 20px;
        font-weight: normal;
        color: darkblue;
        padding-top: 0px;
    }

    .features ul li {
        padding-top: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
        margin-left: -20px;
        border-bottom: 1px solid #eee;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

        .features ul li:hover {
            transform: scale(1.05);
            background-color: white;
            cursor: pointer;
            padding: 10px;
            border-radius: 5px;
            font-size: 18px;
        }

    .favicon img {
        width: 30px; /* Smaller favicon for phones */
        height: 30px;
    }

    .get-started-link {
        margin: 10px 0; /* Margin for spacing */
        width: fit-content; /* Only takes as much space as needed */
    }

    .read-more-link {
        margin: 10px 0; /* Margin for spacing */
        width: fit-content; /* Only takes as much space as needed */
    }

}
