* {
    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;
}

/* Header & Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1565C0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2E7D32 0%, #1565C0 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #2E7D32;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1565C0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Subjects Section */
.subjects {
    padding: 80px 0;
    background: #f8f9fa;
}

.subjects h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.subject-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.subject-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.learn-more {
    color: #1565C0;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

.learn-more:hover {
    text-decoration: underline;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1565C0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial cite {
    font-weight: 600;
    color: #2c3e50;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2E7D32 0%, #1565C0 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2E7D32 0%, #1565C0 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page Styles */
.mission {
    padding: 60px 0;
    background: white;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.mission-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.values {
    padding: 60px 0;
    background: #f8f9fa;
}

.values h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.expertise {
    padding: 60px 0;
    background: white;
}

.expertise h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.expertise-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.expertise-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.expertise-text p {
    margin-bottom: 20px;
    color: #555;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #1565C0;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.team {
    padding: 60px 0;
    background: #f8f9fa;
}

.team h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.member-title {
    color: #1565C0;
    font-weight: 600;
    margin-bottom: 15px;
}

.commitment {
    padding: 60px 0;
    background: white;
}

.commitment h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.commitment-point {
    text-align: center;
    padding: 30px;
}

.commitment-point h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Blog Page Styles */
.blog-categories {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #1565C0;
    background: white;
    color: #1565C0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: #1565C0;
    color: white;
}

.blog-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.post-content {
    padding: 30px;
}

.post-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.post-content h2 a {
    color: #2c3e50;
    text-decoration: none;
}

.post-content h2 a:hover {
    color: #3498db;
}

.post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.post-excerpt {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: #e3f2fd;
    color: #1565C0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.read-more {
    color: #1565C0;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-section {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.popular-topics {
    list-style: none;
}

.popular-topics li {
    margin-bottom: 10px;
}

.popular-topics a {
    color: #555;
    text-decoration: none;
}

.popular-topics a:hover {
    color: #1565C0;
}

.recent-comments .comment {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-comments .comment:last-child {
    border-bottom: none;
}

.recent-comments p {
    color: #555;
    margin-bottom: 5px;
    font-style: italic;
}

.recent-comments span {
    color: #666;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px;
    background: #1565C0;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #0d47a1;
}

.featured-resources {
    padding: 60px 0;
    background: white;
}

.featured-resources h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.resource-link {
    color: #1565C0;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

.resource-link:hover {
    text-decoration: underline;
}

/* Privacy & Terms Pages */
.privacy-content,
.terms-content {
    padding: 60px 0;
    background: white;
}

.privacy-intro,
.terms-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.privacy-intro p,
.terms-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.privacy-section,
.terms-section {
    max-width: 800px;
    margin: 0 auto 40px;
}

.privacy-section h2,
.terms-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #1565C0;
    padding-bottom: 10px;
}

.privacy-section h3,
.terms-section h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

.privacy-section ul,
.terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.privacy-section p,
.terms-section p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #1565C0;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #1565C0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Tutor & Student Page Specific Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.requirement-list h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1565C0;
}

.requirement-list ul {
    list-style: none;
}

.requirement-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.requirement-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: bold;
}

.subjects-needed .subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.subject-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #1565C0;
}

.subject-category h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1565C0;
}

.subject-category ul {
    list-style: none;
}

.subject-category li {
    margin-bottom: 8px;
    color: #555;
    padding-left: 15px;
    position: relative;
}

.subject-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1565C0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: #2E7D32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #2E7D32;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.subjects-offered .subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.subject-link {
    color: #1565C0;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

.subject-link:hover {
    text-decoration: underline;
}

.how-it-works-student {
    padding: 60px 0;
    background: #f8f9fa;
}

.grade-levels {
    padding: 60px 0;
    background: white;
}

.grade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.grade-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid #2E7D32;
}

.grade-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2E7D32;
}

.grade-card ul {
    list-style: none;
    margin-top: 15px;
}

.grade-card li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    color: #555;
}

.grade-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: bold;
}

.pricing {
    padding: 60px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #2E7D32;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2E7D32;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: #1565C0;
    margin-bottom: 10px;
}

.price span {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: bold;
}

.parent-info {
    padding: 60px 0;
    background: white;
}

.parent-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.parent-features h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.parent-features ul {
    list-style: none;
}

.parent-features li {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.parent-cta {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.parent-cta h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.parent-cta p {
    margin-bottom: 20px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .subjects-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .commitment-points {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .features h2,
    .subjects h2,
    .testimonials h2,
    .cta h2,
    .mission h2,
    .values h2,
    .expertise h2,
    .team h2,
    .commitment h2,
    .featured-resources h2 {
        font-size: 28px;
    }
    
    .feature-card,
    .subject-card,
    .testimonial,
    .value-card,
    .team-member,
    .resource-card {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
