.intro-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    color: white;
    font-family: "Open Sans", sans-serif;
}

.intro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.intro-content {
    background: rgba(0, 0, 0, 0.5); /* Optional: Add a semi-transparent background for better text readability */
    padding: 20px 40px;
    border-radius: 10px;
}

.intro-content h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
}

.intro-content h2 {
    margin: 10px 0 0;
    font-size: 1.5em;
    font-weight: 400;
}

.media-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
    font-family: "Open Sans", sans-serif;
}

.media-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.media-section .frame {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(25% - 20px); /* Four divs per row with a 20px gap */
    margin: 10px; /* Adjust margin as needed */
    box-sizing: border-box;
}

.media-section .frame img {
    width: 100%;
    height: auto;
    display: block;
}

.media-section .description {
    padding: 20px;
}

.media-section .description h3 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
}

.media-section .description p {
    font-size: 0.9em;
    color: #666;
}

.media-section .description .more-text.hidden {
    display: none;
}

.media-section .description .view-more {
    display: block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 5px;
}

.media-section .description .view-more:hover {
    background-color: #0056b3;
}



@media (max-width: 1200px) {
    .media-section .frame {
        width: calc(33.333% - 20px); /* Three divs per row */
    }
}

@media (max-width: 992px) {
    .media-section .frame {
        width: calc(50% - 20px); /* Two divs per row */
    }
}

@media (max-width: 768px) {
    .media-section .frame {
        width: calc(100% - 20px); /* One div per row */
    }
}

@media (max-width: 576px) {
    .media-section .frame {
        width: calc(100% - 20px); /* One div per row with increased margin */
        margin: 15px 0; /* Adjust margin for smaller screens */
    }
}

/* LAUCHING SOON SECTINO */

.launch {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background-color: whitesmoke;
    margin: 0;
    font-family: Arial, sans-serif;
}

.launch-button {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
}

.launch-button:hover {
    background-color: #0056b3;
}

.launch-message {
    display: none;
    margin-top: 20px;
    font-size: 24px;
    color: #333;
}