/* Basic Reset */

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nav-bar {
    background: #2c3e50;
    padding: 1rem;
    margin-bottom: 2rem;
}

.nav-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 6.5px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-button:hover {
    background: #2980b9;
}

#content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hero-section {
    text-align: center;
    padding: 3rem 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.grid-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}