body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

header {
    background: #0E3530;
    color: #DFBD69;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.5rem; font-weight: bold; }

nav a {
    color: #DFBD69;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

/* Filter Switch Styles */
.filter-container {
    text-align: center;
    padding: 15px;
    background: #e6e6e6;
    border-bottom: 2px solid #ccc;
}

.filter-label {
    font-weight: bold;
    margin-right: 15px;
    color: #0E3530;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #0E3530;
    background: white;
    color: #0E3530;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin: 0 5px;
}

.filter-btn.active {
    background: #0E3530;
    color: #DFBD69;
}

.hero {
    background: #ffffff;
    text-align: center;
    padding: 80px 20px;
    border-bottom: 5px solid #DFBD69;
}

.hero h1 { color: #0E3530; font-size: 2.5rem; }

.cta-buttons { margin-top: 20px; }

.btn {
    padding: 12px 25px;
    background: #0E3530;
    color: #DFBD69;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin: 5px;
    text-decoration: none;
    display: inline-block;
}

.btn.secondary { background: #DFBD69; color: #0E3530; }

.section { padding: 60px 10%; text-align: center; }

.bg-light { background-color: #f0f0f0; }

.section-title { color: #0E3530; margin-bottom: 30px; font-size: 2rem; }

/* The Grid (Restored) */
.grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-small {
    background: #0E3530;
    color: #DFBD69;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
}

/* Form Styles */
.application-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.application-form input, .application-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

footer {
    background: #0E3530;
    color: #DFBD69;
    text-align: center;
    padding: 20px;
}