:root {
    --primary-blue: #4f92e6;
    --secondary-green: #76e118;
    --dark-text: #333;
    --white: #ffffff;
}

body { font-family: Arial, sans-serif; margin: 0; color: var(--dark-text); line-height: 1.6; }

header { background: var(--primary-blue); color: white; padding: 1rem 0; text-align: center; }

nav { background: #f4f4f4; padding: 10px; text-align: center; border-bottom: 3px solid var(--secondary-green); }
nav a { margin: 0 15px; text-decoration: none; color: var(--primary-blue); font-weight: bold; }
nav a:hover { color: var(--secondary-green); }

.container { width: 80%; margin: auto; padding: 20px; min-height: 400px; }

footer { background: #333; color: white; text-align: center; padding: 20px; margin-top: 20px; }

.btn { 
    background: var(--secondary-green); 
    color: #333; 
    padding: 10px 20px; 
    border: none; 
    cursor: pointer; 
    font-weight: bold; 
}

.btn:hover { background: var(--primary-blue); color: white; }

input, textarea { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; }

.services-grid table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.services-grid th {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid td {
    color: #555;
}

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

/* Add this to style.css */
.about-card {
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-section {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-left: 5px solid var(--secondary-green); /* Use the green for accent */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item h4 {
    margin-top: 0;
    color: var(--primary-blue); /* Use the blue for questions */
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;
    color: #666;
}

.resource-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-tag {
    background: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
}

.resource-card h3 {
    margin-top: 10px;
    color: #333;
}

.read-more {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

.read-more:hover {
    text-decoration: underline;
}