body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: #007BFF;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    color: #fff;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 700;
}

header nav a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: #e9f4ff;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #fff;
    background: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hero .btn:hover {
    background: #0056b3;
}

section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: #fff;
}

footer a {
    color: #28A745;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Layout (Responsive) */
@media (max-width: 768px) {

    /* Keep hover areas in place */
    .hover-area,

    /* Make descriptions stack and adjust for smaller screens */
    .description {
        /* Remove absolute positioning */
        margin: 10px 0;
        /* Add vertical space */
        padding: 0px;
        font-size: 11px;
        /* Reduce font size on smaller screens */
        width: auto;
        /* Full width */
        max-width: 90%;
        /* Limit width on mobile */
    }

    /* Remove lines (optional, but looks cleaner on mobile) */
    .line {
        display: none;
    }

    /* Stack descriptions using flexbox */
    .image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        /* Space between text descriptions */
    }
}