/* ===== Flag & Info Section Container ===== */
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
    background: white;
    color: #1a1a1a;
    flex-wrap: wrap;
}

/* ===== Info Section Styling ===== */
.info-section {
    background: #f4f4f4;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 500px;
    margin-left: 30px;
}

.info-section h2 {
    font-size: 26px;
    color: #222;
    margin-bottom: 15px;
}

.info-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* ===== Flag Section Styling ===== */
.flag-section {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(to bottom, #006B3F, #FFD700);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.flag-section img {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 50%;
}

/* ===== Small Flags Section ===== */
.small-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.small-flags img {
    width: 55px;
    height: 35px;
    border-radius: 6px;
    border: 2px solid #006B3F;
}

/* ===== Main Flag Styling ===== */
#main-flag {
    display: block;
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
}

/* ===== Button Styling ===== */
.watch-video-btn {
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.watch-video-btn:hover {
    background: #D41C1C;
    color: white;
}

/* ===== Video Popup Styling ===== */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* ===== Responsive Design for Mobile ===== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
        align-items: center;
    }

    .info-section {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .flag-section {
        width: 250px;
        height: 250px;
        margin-bottom: 20px;
    }

    .small-flags {
        gap: 10px;
        margin-top: 15px;
    }

    .small-flags img {
        width: 45px;
        height: 30px;
    }

    .watch-video-btn {
        width: 100%;
    }
}
