body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f4f4;

}


.header-header {
    background-color: #222222; /* Example background color */
    padding: 20px;
    text-align: center;
    color: #ffffff
}


header {
    position: relative;
    text-align: center;
    color: white;
    max-height: 400px; /* Maximum height for the header */
    overflow: hidden;
    margin-bottom: 40px;
}

.banner {
    width: 100%;
}

.banner img {
    width: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

@media (max-width: 767px) {
    header {
        min-height: 250px;
    }

    .overlay {
        min-height: 250px; /* Minimum height set to 300px */
    }

    .banner img {
        height: 250px; /* Setting height to match the overlay */
    }

    .header-content {
        padding: 0 20px;
    }

    /* Adjustments for header h1, p, and button as needed */
    header h1 {
        font-size: 24px;
            white-space: nowrap; /* Prevents text wrapping */

    }

    header p {
        font-size: 18px;
    }

    /* Additional button styling if necessary */
    button {
        /* Style properties */
    }
}


header h1 {
    margin-bottom: 10px;
}

header p {
    margin-bottom: 20px;
}



button {
    padding: 15px 30px;
    background-color: #E50914;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap; /* Prevents text from wrapping */
}

button:hover {
    background-color: #f40612;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

button:active {
    transform: scale(0.95);
    background-color: #c4080d;
}





.buttonsmall {
    padding: 10px 15px;
    background-color: #3498db;
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap; /* Prevents text from wrapping */
}

.buttonsmall:hover {
    background-color: #3498db;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.buttonsmall:active {
    transform: scale(0.95);
    background-color: #3498db;
}




.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 95%;
    margin: 0 auto;
    margin-bottom: 150px;
}


/* Media query for mobile devices */
@media (max-width: 767px) {
    .content {
        margin-bottom: 75px; /* Set margin-bottom to 75px for mobile devices */
    }
}

.media {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.media img {
    width: 90%;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
border-radius: 10px;
}

.media .text {
    width: 90%;
    text-align: left;
    padding: 0 15px;
}

.media .subheader {
    font-size: 0.9em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 5px;
}

.media .title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
}

.media .decorative-line {
    width: 50px;
    height: 4px;
    background-color: #333;
    margin: 0 auto 15px;
}

.media p {
    padding-bottom: 20px;
}

@media(min-width: 768px) {
    .content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 1280px;
        margin-top: 40px;
    }

    .media {
        flex-direction: row;
        width: 100%;
        margin: 10px;
    }

    .media:nth-child(odd) .text {
        order: 1;
    }

    .media:nth-child(odd) img {
        order: 2;
    }

    .media:nth-child(even) .text {
        order: 2;
    }

    .media:nth-child(even) img {
        order: 1;
    }

    .media img {
        width: 100%;
        max-width: 50%;
        margin-bottom: 0;
    }

    .media .text {
        width: 100%;
        max-width: 50%;
        padding: 0 20px;
        text-align: left;
    }
}






    #sticky-footer {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px 0;
            display: none; /* Initially hidden */
            z-index: 1000; /* Ensure it's above other content */
        }
