/* Reset and base styles */
:root {
    --primary-color: #1a237e;
    --secondary-color: #283593;
    --accent-color: #90caf9;
    --text-color: #333;
    --background-color: #f5f5f5;
    --card-background: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --spacing-unit: 1rem;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.content-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-unit);
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px var(--shadow-color);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav a:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
    margin-bottom: 3rem;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Hero Sections */
.hero {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.education-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/education-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.company-hero {
    background-image: url('images/company-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--primary-color); /* Fallback color */
}

/* Company Grid */
.company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.company-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.company-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    position: relative;
    z-index: 1;
}

.company-card:hover img {
    transform: scale(1.05);
}

.company-card h3 {
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.company-card p {
    margin: 0 1.5rem 1.5rem;
    color: #666;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px var(--shadow-color);
}

.hero-btn {
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background-color: #fff;
    color: var(--primary-color);
}

.hero-btn:hover {
    background-color: #f5f5f5;
}

/* Forms */
.nomination-form {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--background-color);
    margin: 2rem 0;
}

.nomination-form h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.nomination-form p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-color);
}

.nomination-btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
}

.nomination-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-page {
        padding: 1rem;
    }

    .company-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .company-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .nomination-form {
        padding: 1rem;
    }
}

/* Image Loading */
img {
    opacity: 1;
    transition: transform 0.3s ease;
}

.company-card img, .gallery-item img {
    opacity: 1;
    transition: transform 0.3s ease;
}

/* Company Details Page */
.company-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.company-header {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.company-info {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.company-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    background: var(--card-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item p {
    padding: 1rem;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Education Page Styles */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    margin: 0 0 1rem;
    color: var(--primary-color);
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.course-highlights li {
    margin: 0.5rem 0;
    color: #666;
}

.education-benefits {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.benefit-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Course Detail Page Styles */
.course-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.course-header {
    text-align: center;
    margin-bottom: 3rem;
}

.course-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-tagline {
    font-size: 1.2rem;
    color: #666;
}

.course-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.course-description {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.course-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.detail-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.detail-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.course-curriculum {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

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

.course-curriculum li {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.course-curriculum li:last-child {
    border-bottom: none;
}

.course-contact {
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.course-contact h3 {
    margin-bottom: 1rem;
}

.course-contact .btn {
    background: white;
    color: var(--primary-color);
    margin-top: 1rem;
}

.course-contact .btn:hover {
    background: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .course-info {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Content Pages Common Styles */
.content-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
}

.page-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.page-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mission Page Styles */
.mission-statement {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pillar {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

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

.mission-goals li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: #f8f9fa;
    border-radius: 4px;
}

/* Team Page Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
}

.team-member .title {
    color: #666;
    margin-bottom: 1rem;
}

.team-member .bio {
    padding: 0 1rem 1rem;
}

.team-values {
    text-align: center;
    margin-top: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Careers Page Styles */
.careers-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.job-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.job-card .location,
.job-card .type {
    color: #666;
    margin-bottom: 0.5rem;
}

.job-card .description {
    margin: 1rem 0;
}

.application-process {
    margin-top: 3rem;
}

.application-process ol {
    padding-left: 1.5rem;
}

.application-process li {
    margin: 1rem 0;
}

/* Blog Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.post-preview {
    margin: 1.5rem 0;
}

.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.sidebar-section li {
    margin: 0.5rem 0;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subscribe-form input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* News Page Styles */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.news-article {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.article-preview {
    margin: 1.5rem 0;
}

blockquote {
    margin: 2rem 0;
    padding: 1rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: #f8f9fa;
}

.contact-info {
    margin-top: 1rem;
    line-height: 1.6;
}

/* Events Page Styles */
.events-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.featured-event {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.event-content {
    padding: 2rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-details {
    margin: 2rem 0;
}

.schedule {
    margin: 2rem 0;
}

.day {
    margin: 1.5rem 0;
}

.day h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.price-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.event-list li {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.event-list .date,
.event-list .location {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .blog-grid,
    .news-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .mission-pillars {
        grid-template-columns: 1fr;
    }

    .job-listings {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .pricing {
        grid-template-columns: 1fr;
    }
}

/* Support Page Styles */
.support-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.contact-options {
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-form {
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.faq-section {
    margin-top: 3rem;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Partnerships Page Styles */
.partnerships-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.partnership-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.program-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.program-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.program-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.program-card li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.program-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.story-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.story-card p {
    padding: 0 1.5rem 1.5rem;
}

/* Media Page Styles */
.media-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.media-intro {
    margin-bottom: 3rem;
}

.release-list {
    display: grid;
    gap: 1.5rem;
}

.release-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.release-item .date {
    color: #666;
    font-size: 0.9rem;
}

.release-item h4 {
    margin: 0.5rem 0;
    color: var(--primary-color);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.resource-card {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.resource-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.resource-card li {
    margin: 0.5rem 0;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    text-decoration: none;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .support-grid,
    .partnerships-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }
}