body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.project-page {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-section {
    width: 100%;
    height: 60vh;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.title-description {
    width: 60%;
}

.title-description h1 {
    margin-bottom: 10px;
}

.info-section {
    width: 40%;
    background-color: #f0f0f0;
    padding: 20px;
    box-sizing: border-box;
}

.info-section ul {
    list-style-type: none;
    padding: 0;
}

.info-section button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.info-section button:hover {
    background-color: #0056b3;
}

/* YouTube video section */
.video-section {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.popup-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 2px solid #000;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.popup-box h2 {
    margin-top: 0;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
