/* Basic styling for the page */
html, body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.top-left img {
    max-width: 200px;
}

@media screen and (max-width: 768px) {
    .top-container {
        flex-direction: column;
    }

    .top-left img {
        margin-bottom: 20px;
    }
}

.top-right h1 {
    font-size: 2em;
    color: #333;
}

.bottom-container h2 {
    color: #e74c3c;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.bottom-container p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1em;
}

.bottom-container img {
    max-width: 100%;
    max-height: 500px;
    display: block;
    margin: 20px auto;
    cursor: pointer;
    border: 2px solid #eaeaea;
    text-align: center;
}

.bottom-container video {
    margin: 20px auto;
    display: block;
    max-width: 100%;
    text-align: center;
}

.center {
    text-align: center;
}

/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black background with opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
