/* Scholarship Explorer Theme styles */

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

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

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

.site-header {
    background: #2c3e50;
    color: #fff;
    padding: 20px 0;
}

.site-header .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: flex-end;
    margin-top: 10px;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: #ecf0f1;
}

.nav-list a.active {
    font-weight: bold;
    text-decoration: underline;
}

.hero {
    background: linear-gradient(to right, #8e44ad, #3498db);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #e67e22;
    color: #fff;
}

.btn-primary:hover {
    background: #d35400;
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #bdc3c7;
}

.features {
    padding: 40px 0;
    text-align: center;
}

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

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #2c3e50;
}

.card p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.page-title {
    margin: 40px 0 20px;
    font-size: 2rem;
    text-align: center;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.item-card {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.item-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #34495e;
}

.item-card a {
    color: #2980b9;
    text-decoration: none;
    font-size: 0.9rem;
}

.item-card a:hover {
    text-decoration: underline;
}

.detail-section {
    padding: 40px 0;
}

.detail-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.detail-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1rem;
    color: #555;
}

.scholarship-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.scholarship-list li {
    background: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.eligibility-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.eligibility-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.eligibility-form select,
.eligibility-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
}

.eligibility-form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #8e44ad;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
}

.eligibility-form button:hover {
    background: #732d91;
}

.results {
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.results h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #2c3e50;
}

.results ul {
    list-style: none;
    padding: 0;
}

.results li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.site-footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    margin-top: 40px;
}