/* --- Base Styles (Mobile First) --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
.main-header {
    background: #224126;
    color: #ffffff;
    padding: 1rem;
}

/* Navigation Bar */
/* Style the naviation menu */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
#myLinks {
    display: none;
}

/* Style navigation menu links */
.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Style the active link (or home/log0) */
.active {
    background-color: #04A66D;
    color: white;
}

/* Content */
.content {
    padding: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

img {
    width: 100%;
    border-radius: .4em;
}

p {
    padding: .5em 0;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 1rem;
    background: #35424a;
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* --- Larger Screen Adjustments (Tablets/Desktops) --- */
@media (min-width: 768px) {
    .content {
        max-width: 800px;
        margin: 0 auto;
    }
    
}
