/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    line-height: 1.6;
}

/* Top Navigation Container */
.topnav {
    background-color: #333;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Navigation Links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 16px 20px;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Active Link Styling */
.topnav a.active {
    background-color: #2196F3;
    color: white;
}

/* Hide the hamburger icon by default (Desktop) */
.topnav .icon {
    display: none;
}

/* Responsive Styles (max-width: 600px) */
@media screen and (max-width: 600px) {
    /* Hide all links except the first one (Home) */
    .topnav a:not(:first-child) {
        display: none;
    }

    /* Show the hamburger icon */
    .topnav a.icon {
        float: right;
        display: block;
        padding: 16px;
    }

    /* Styling when the "responsive" class is added via JS */
    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
        border-bottom: 1px solid #444;
    }

    /* Match the screenshot's Home item width and icon position */
    .topnav.responsive a:first-child {
        border-bottom: none;
    }
}

/* Container for content */
.content {
    padding: 40px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.content h1 {
    color: #333;
    margin-bottom: 20px;
}

.content p {
    color: #666;
    font-size: 1.1rem;
}
