/* style.css */
:root {
    --primary-green: #2e7d32;
    --dark-grey: #333;
    --white: #ffffff;
}
.modal {
    display: none; 
    position: fixed;
    z-index: 9999; /* This ensures it sits on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Darker background for focus */
    align-items: center;
    justify-content: center;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Modal and Video Styles */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: #000;
    border: 3px solid var(--primary-green);
    border-radius: 8px;
}
/* ... rest of the CSS provided above ... */