@media (max-width: 900px) {
    .about-section {
        padding: 15px;
        margin: 15px auto;
        max-width: 98vw;
    }
    .about-img {
        max-width: 90vw;
        height: auto;
    }
    .header h1 {
        font-size: 2rem;
    }
    .header p, .about-section h2, .about-section ul, .about-section p {
        font-size: 1.1rem;
    }
    .about-btn {
        padding: 10px 18px;
        font-size: 1rem;
    }
}
/* --- About Page Custom Styles --- */
.about-section {
    background: #111;
    border-radius: 10px;
    padding: 30px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    text-align: center;
}

.about-section h2 {
    color: #00c800;
    margin-bottom: 15px;
}

.about-section ul {
    text-align: left;
    margin: 0 auto 20px auto;
    max-width: 400px;
    padding-left: 20px;
}

.about-section ul li {
    margin-bottom: 10px;
    color: #fff;
}

.about-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.about-btn {
    display: inline-block;
    background-color: #009605;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px 10px 0 10px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.about-btn:hover {
    background-color: #015000;
}

/* Center the action buttons at the bottom of the about card */
.about-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: white;
    margin: 0;
    padding: 0;
}

.header {
    text-align: center;
    border-radius: 5px;
}

/* --- Dropdown Menu Container --- */
.dropdown {
    position: relative; 
    display: inline-block; 
    margin: 20px;
}

/* --- The Dropdown Button --- */
.dropbtn {
    background-color: #009605;
    color: white;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* --- The Container for the Links (Hidden by Default) --- */
.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #288f00;
    min-width: 200px;
    box-shadow: 0px 6px 14px 0px rgb(255, 255, 255);
    z-index: 1;
    border-radius: 5px;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* --- Styling for the Links Inside the Dropdown --- */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block; /* Makes the entire area clickable, not just the text */
    
}

/* --- Change color of dropdown links on hover --- */
.dropdown-content a:hover {
    background-color: #015000;
    transition: background-color 0.3s;
}

/* --- THE MAGIC: Show the dropdown menu when hovering over the container --- */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
