* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #3498db;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #3498db;
    color: white;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 10px 24px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-icon svg {
    width: 20px;
    height: 20px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-card > p {
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    min-height: 40px;
}

.service-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.feature {
    background: #f8fafc;
    color: #475569;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover .feature {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* Role-specific icon colors */
.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #10b981, #047857); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); }

/* Resources Section */
.resources {
    padding: 60px 0;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.resource-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.resource-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.resource-card ul {
    list-style: none;
    text-align: left;
}

.resource-card li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #dee2e6;
}

.resource-card li:last-child {
    border-bottom: none;
}

.resource-card a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.resource-card a:hover {
    color: #2980b9;
}

.contact-info p {
    margin: 0.6rem 0;
    color: #555;
    font-size: 0.9rem;
}

.contact-info strong {
    color: #2c3e50;
}

/* Team Section */
.team {
    padding: 60px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.member-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
    padding: 12px;
    transition: all 0.3s ease;
}

.team-member:hover .member-icon {
    transform: scale(1.05);
}

.member-icon svg {
    width: 24px;
    height: 24px;
}

.team-member h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.role {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expertise {
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    min-height: 40px;
}

.member-contact {
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.email {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.phone {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Role-specific icon colors */
.team-member:nth-child(1) .member-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.team-member:nth-child(2) .member-icon { background: linear-gradient(135deg, #10b981, #047857); }
.team-member:nth-child(3) .member-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.team-member:nth-child(4) .member-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }

/* Contact Section */
.contact {
    padding: 60px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.method-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.contact-method h4 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-method p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.method-desc {
    color: #6c757d !important;
    font-size: 0.8rem !important;
    font-style: italic;
}

.contact-form {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ecf0f1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .resources-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 180px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .resource-card,
    .team-member {
        padding: 1.25rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
}