/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sanchez:ital,wght@0,400;1,400&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.site-container {
    max-width: 1300px;
    margin: 0 auto;
}

body {
    font-family: 'Saira Condensed', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6,
.nav-menu a,
.logo-main, .logo-sub,
.footer-logo-main, .footer-logo-sub,
.explore-btn, .learn-more-btn, .read-more-btn, .submit-btn,
.dropdown-content a {
    font-family: 'Sanchez', serif;
}

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

/* Header - Simplified */
.header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    margin-right: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #A86000;
}

/* Dropdown - Simplified */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 8px 0;
    border-radius: 4px;
}

.dropdown-content a {
    color: #444;
    padding: 10px 18px;
    text-decoration: none;
    display: block;
    font-size: 13px;
}

.dropdown-content a:hover {
    background: #f9f9f9;
    color: #A86000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 1;
}

.facebook { background: #1877F2; }
.instagram { background: #E4405F; }
.linkedin { background: #0A66C2; }
.twitter { background: #000000; }

/* Hero Section - Cleaner */
.hero {
    height: 65vh;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('img/ltkf-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    color: white;
    width: 100%;
}

.hero-text {
    max-width: 550px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero h2 {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    line-height: 1.5;
}

.explore-btn {
    background: #A86000;
    color: white;
    padding: 14px 32px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 2px;
    letter-spacing: 1px;
}

.explore-btn:hover {
    background: #8B4513;
}

.hero-overlay-text {
    display: none; /* Remove overlay text for minimalism */
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

/* Section Headers - Simplified */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Community Section - Minimalist */
.community-section {
    padding: 70px 0;
    background: white;
}

.community-header {
    text-align: center;
    margin-bottom: 50px;
}

.community-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.community-container {
    display: flex;
    overflow-x: hidden;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.community-card {
    flex: 0 0 calc(33.333% - 14px);
    height: 400px;
    color: white;
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 4px;
}

.community-card:hover {
    transform: translateY(-3px);
}

.community-card-1 {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('img/ltkf-small-business.jpg');
    background-size: cover;
    background-position: center;
}

.community-card-2 {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('img/community-card-2.png');
    background-size: cover;
    background-position: center;
}

.community-card-3 {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('img/community-card-3.png');
    background-size: cover;
    background-position: center;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 30px;
}

.community-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    font-size: 1rem;
    line-height: 1.3;
    color: #333;
    margin-bottom: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-overlay .learn-more-btn {
    background: #A86000;
    padding: 10px 20px;
    font-size: 0.75rem;
    color: #fff;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.3s;
}

.card-overlay .learn-more-btn:hover {
    background: #8B4513;
}

/* About Section - Clean Layout */
.about-section {
    display: flex;
    align-items: center;
    padding: 0;
    background-color: #fafafa;
    max-width: 100%;
    margin: 0 auto;
}

.about-image-container {
    flex: 1;
    position: relative;
    max-width: 45%;
}

.about-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1;
    padding: 40px 60px;
    max-width: 55%;
    color: #333;
}

.about-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.5px;
}

.underline-left {
    width: 60px;
    height: 2px;
    background-color: #A86000;
    margin-bottom: 25px;
    margin-left: 0;
}

.underline-center {
    width: 60px;
    height: 2px;
    background: #A86000;
    margin: 0 auto;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.read-more-btn {
    display: inline-block;
    background-color: #A86000;
    color: white;
    padding: 12px 26px;
    border: none;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #8B4513;
}

/* News Section - Simplified Grid */
.news-section {
    padding: 70px 0;
    background: white;
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.news-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-card {
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 25px;
    color: white;
    position: relative;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.news-card:hover {
    transform: translateY(-3px);
}

.news-card-1 { background: #B69262; }
.news-card-2 { background: #543042; }
.news-card-3 { background: #B69262; }
.news-card-4 { background: #A86000; }

.news-horn-icon {
    margin-bottom: 25px;
    opacity: 0.85;
}

.news-horn-icon img {
    width: 180px;
    height: auto;
}

.news-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news-card h3 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card p {
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 300;
}

/* Featured News Section */
.featured-news {
    padding: 70px 0;
    background: white;
}

.featured-article {
    display: flex;
    gap: 50px;
    align-items: center;
}

.featured-image {
    flex: 1;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
}

.featured-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #A86000;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 3px;
    min-width: 60px;
}

.featured-date .day {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
}

.featured-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.featured-date .year {
    display: block;
    font-size: 0.65rem;
}

.featured-content {
    flex: 1;
}

.article-meta {
    margin-bottom: 18px;
}

.article-meta .category {
    background: #543042;
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 12px;
    border-radius: 2px;
}

.article-meta .author {
    color: #A86000;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 18px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.featured-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
}

.read-full-btn {
    background: #A86000;
    color: white;
    padding: 11px 22px;
    border: none;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.read-full-btn:hover {
    background: #8B4513;
}

/* Recent News Section */
.recent-news {
    padding: 70px 0;
    background: #fafafa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

.news-article:hover {
    transform: translateY(-3px);
}

.article-image {
    position: relative;
}

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

.article-date {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(168, 96, 0, 0.95);
    color: white;
    padding: 6px 10px;
    font-size: 0.75rem;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.article-content {
    padding: 22px;
}

.article-category {
    background: #543042;
    color: white;
    padding: 3px 10px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
    border-radius: 2px;
}

.article-content h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.article-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.read-more-link {
    color: #A86000;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.read-more-link:hover {
    color: #543042;
}

.load-more {
    text-align: center;
}

.load-more-btn {
    background: #543042;
    color: white;
    padding: 12px 26px;
    border: none;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.load-more-btn:hover {
    background: #6a3e5d;
}

/* Contact Page Styles */
.contact-info {
    padding: 70px 0;
    background: white;
}

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

.contact-card {
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: #A86000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.contact-card h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 70px 0;
    background: #fafafa;
}

.contact-form-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-form-content {
    flex: 1;
}

.contact-form-content h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-form-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    font-family: 'Saira Condensed', sans-serif;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A86000;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.contact-submit-btn {
    background: #543042;
    color: white;
    padding: 13px 32px;
    border: none;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
    letter-spacing: 1px;
}

.contact-submit-btn:hover {
    background: #6a3e5d;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
}

/* FAQ Section */
.faq-section {
    padding: 70px 0;
    background: white;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.faq-question {
    padding: 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h3 {
    color: #333;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.faq-question i {
    color: #A86000;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 20px 20px;
    background: #fafafa;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* What We Do Page Styles */
.programs-overview {
    padding: 70px 0;
    background: white;
}

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

.program-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-3px);
}

.program-image {
    height: 230px;
    overflow: hidden;
}

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

.program-card:hover .program-image img {
    transform: scale(1.03);
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.program-content > p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
}

.program-features {
    list-style: none;
    margin-bottom: 20px;
}

.program-features li {
    padding: 6px 0;
    color: #666;
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
}

.program-features li::before {
    content: "•";
    color: #A86000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.program-btn {
    background: #A86000;
    color: white;
    padding: 11px 22px;
    border: none;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.program-btn:hover {
    background: #8B4513;
}

/* Impact Section */
.impact-section {
    padding: 70px 0;
    background: #fafafa;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 35px 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #A86000;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.impact-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.impact-text {
    flex: 1;
}

.impact-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.impact-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
}

.impact-image {
    flex: 1;
}

.impact-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
}

/* How We Work Section */
.how-we-work {
    padding: 70px 0;
    background: white;
}

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

.process-step {
    text-align: center;
    padding: 35px 20px;
    background: white;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #A86000;
    margin-bottom: 18px;
    opacity: 0.7;
}

.process-step h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: #333;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.05rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-btn {
    padding: 13px 28px;
    border: none;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 140px;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: #A86000;
    color: white;
}

.cta-btn.primary:hover {
    background: #8B4513;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #333;
}

/* Team Page Styles */
.leadership-section {
    padding: 70px 0;
    background: white;
}

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

.leadership-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.leader-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-3px);
}

.leader-image {
    height: 280px;
    background: linear-gradient(45deg, #A86000, #D2B48C);
    position: relative;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 25px;
}

.leader-info h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.leader-info p:first-of-type {
    color: #A86000;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.leader-info p:nth-of-type(2) {
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.leader-social {
    display: flex;
    gap: 8px;
}

.leader-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.leader-social a:hover {
    transform: scale(1.1);
}

.team-section {
    padding: 70px 0;
    background: #fafafa;
}

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

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.team-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-3px);
}

.team-image {
    height: 230px;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 22px;
}

.team-info h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.team-info p:first-of-type {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #A86000;
    letter-spacing: 1px;
}

.team-info p:last-of-type {
    color: #666;
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Advisory Board Section */
.advisory-section {
    padding: 70px 0;
    background: white;
}

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

.advisory-header {
    text-align: center;
    margin-bottom: 50px;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.advisor-card {
    background: white;
    padding: 25px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: transform 0.3s ease;
}

.advisor-card:hover {
    transform: translateY(-3px);
}

.advisor-card div:first-child {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.advisor-card div:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-card h4 {
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.advisor-card p:first-of-type {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #A86000;
    letter-spacing: 1px;
}

.advisor-card p:last-of-type {
    color: #666;
    line-height: 1.5;
    font-size: 0.8rem;
}

/* Our Story Page Styles */
.story-section {
    padding: 70px 0;
    background: white;
}

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

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
}

.story-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 18px;
}

/* Mission & Vision Section */
.mission-section {
    padding: 70px 0;
    background: #fafafa;
}

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

.mission-header {
    text-align: center;
    margin-bottom: 50px;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card {
    background: white;
    padding: 35px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-3px);
}

.mission-card div:first-child {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card h3 {
    margin-bottom: 18px;
    font-size: 1.3rem;
    font-weight: 600;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Timeline Section */
.timeline-section {
    padding: 70px 0;
    background: white;
}

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

.timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 30px;
}

.timeline-content {
    flex: 1;
}

.timeline-card {
    background: white;
    padding: 25px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.timeline-card h3 {
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
}

.timeline-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
    box-shadow: 0 0 0 2px #A86000;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    background-color: #333;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('img/newsletter.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 20px;
    color: white;
    min-height: 180px;
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

.newsletter-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.newsletter-content {
    flex: 1 1 320px;
    min-width: 260px;
}

.newsletter-content h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

.newsletter-content p  {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.newsletter-form {
    flex: 0 1 380px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    color: white;
    width: 170px;
    min-width: 140px;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.8);
}

.submit-btn {
    white-space: nowrap;
    padding: 11px 22px;
    background: #A86000;
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #8B4513;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo-img {
    height: 120px;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.3s;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    opacity: 1;
    color: white;
}

.footer-column h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social .social-icon {
    background: rgba(255,255,255,0.1);
    width: 34px;
    height: 34px;
}

.footer-social .social-icon:hover {
    background: rgba(255,255,255,0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .about-image-container,
    .about-content {
        max-width: 100%;
        padding: 0;
    }

    .about-image-container img {
        height: 320px;
        margin-bottom: 30px;
    }

    .about-content {
        padding: 0 20px;
        text-align: center;
    }

    .underline-left {
        margin: 0 auto 25px auto;
    }

    .featured-article {
        flex-direction: column;
        gap: 35px;
    }

    .contact-form-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .impact-content {
        flex-direction: column;
        gap: 35px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .header-right {
        flex-direction: column;
        gap: 12px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .community-container {
       flex-direction: column;
       gap: 15px;
    }

    .community-card {
        flex-basis: auto;
        height: 350px;
    }

    .news-slider {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-card {
       height: 320px;
    }

    .newsletter-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .footer-logo {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
    }

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

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

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

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

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

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

    .work-process {
        grid-template-columns: 1fr;
    }

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

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

    .hero h1 {
        font-size: 2rem;
    }
}
/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

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

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

.contact-card {
    padding: 40px 20px;
    background: #fafafa;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: #B69262;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #A86000;
}
