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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #2d2d2d;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4af37;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background-color: #d4af37;
    color: #2d2d2d;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background-color: #d4af37;
    color: #2d2d2d;
}

/* Mission Section */
.mission {
    padding: 60px 20px;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background-color: #faf8f3;
    padding: 30px;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
}

.mission-card h3 {
    color: #2d2d2d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.mission-card p {
    color: #555;
    line-height: 1.8;
}

/* Featured Event */
.featured-event {
    padding: 60px 20px;
    background-color: #faf8f3;
}

.featured-event h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d2d2d;
}

.event-card {
    display: flex;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background-color: #d4af37;
    color: #2d2d2d;
    border-radius: 4px;
    padding: 15px;
    font-weight: 600;
}

.event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
}

.event-details h3 {
    color: #2d2d2d;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.event-description {
    color: #555;
    margin-bottom: 10px;
}

.event-info {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card.featured {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .event-card {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: 100%;
    }
}

/* Programs Section */
.programs {
    padding: 60px 20px;
    background-color: white;
}

.programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d2d2d;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-item {
    background-color: #faf8f3;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s;
}

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

.program-item h3 {
    color: #2d2d2d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.program-item p {
    color: #666;
}

/* Newsletter */
.newsletter {
    padding: 60px 20px;
    background-color: #2d2d2d;
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

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

.page-header p {
    font-size: 1.1rem;
}

.events-header,
.about-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

/* About Content */
.about-content {
    padding: 60px 20px;
    background-color: white;
}

.about-section {
    margin-bottom: 40px;
    max-width: 900px;
}

.about-section h3 {
    color: #2d2d2d;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 10px;
}

.about-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.values-list {
    list-style: none;
}

.values-list li {
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.8;
}

/* Events Section */
.events-section {
    padding: 60px 20px;
    background-color: white;
}

/* Program Overview */
.program-overview {
    padding: 60px 20px;
    background-color: white;
}

.overview-content {
    max-width: 800px;
}

.overview-content h3 {
    color: #2d2d2d;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.overview-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Program Features */
.program-features {
    padding: 60px 20px;
    background-color: #faf8f3;
}

.program-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d2d2d;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-item h3 {
    color: #2d2d2d;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
}

/* Application Section */
.application-section {
    padding: 60px 20px;
    background-color: #2d2d2d;
    color: white;
    text-align: center;
}

.application-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.application-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
}

.contact-info h3,
.contact-form-wrapper h3 {
    color: #2d2d2d;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    color: #2d2d2d;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
}

.info-item a {
    color: #d4af37;
    text-decoration: none;
}

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

.social-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #d4af37;
    text-decoration: none;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2d2d2d;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #d4af37;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

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

.footer-section li {
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .section-header h2,
    .programs h2,
    .featured-event h2 {
        font-size: 1.8rem;
    }

    .mission-content,
    .programs-grid,
    .features-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info,
    .contact-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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