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

html, body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;

}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    border-radius: 5px;
}

.nav-logo h2 {
    margin: 0;
    color: #4a90e2;
    font-weight: 600;
    font-size: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4a90e2;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #4a90e2;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.donate-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.8), rgba(155, 89, 182, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #4a90e2;
    transform: translateY(-3px);
}

/* Mission Banner */
.mission-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.mission-verse {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.cta-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cta-item:hover {
    transform: translateY(-10px);
}

.cta-item i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.cta-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Hope Section */
.hope-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    text-align: center;
}

.hope-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 2rem auto 0;
    color: #5d4e75;
}

/* Letter Section */
.letter-section {
    padding: 5rem 0;
    background: white;
}

.letter-container {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.letter-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.ceo-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4a90e2;
}

.letter-title h2 {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.letter-subtitle {
    color: #666;
    font-style: italic;
}

.letter-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
    text-align: right;
}

.quote {
    font-style: italic;
    color: #4a90e2;
    font-weight: 500;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.story-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #4a90e2;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Poverty Section */
.poverty-section {
    padding: 5rem 0;
    background: white;
}

.poverty-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #4a90e2;
}

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

.solution-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.solution-item i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.solution-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.poverty-conclusion {
    margin-top: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-card i,
.vision-card i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.mission-card h2,
.vision-card h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* CEO Section */
.ceo-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.ceo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.ceo-info h3 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.ceo-title {
    font-weight: 600;
    color: #666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceo-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.ceo-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Action Section */
.action-section {
    padding: 5rem 0;
    background: white;
}

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

.action-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.action-card:hover {
    transform: translateY(-10px);
}

.action-card i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.action-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Need Section */
.need-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    text-align: center;
}

.need-subtitle {
    font-size: 2rem;
    margin: 1rem 0;
    color: #ffd700;
}

.need-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.need-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

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

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

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4a90e2;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #357abd;
}

.contact-email {
    color: #4a90e2 !important;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

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

/* Page-specific styles for additional pages */

/* Page Hero Styles */
.page-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(80, 200, 120, 0.9)), 
                url('images/20230706_170912.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Goals Section */
.goals-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.goal-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-10px);
}

.goal-card i {
    font-size: 4rem;
    color: #4a90e2;
    margin-bottom: 2rem;
}

.goal-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* Needs Section */
.needs-section {
    padding: 80px 0;
}

.needs-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

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

.need-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #4a90e2;
    transition: transform 0.3s ease;
}

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

.need-item.urgent {
    border-left-color: #e74c3c;
}

.need-item.long-term {
    border-left-color: #f39c12;
}

.need-item i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.need-item.urgent i {
    color: #e74c3c;
}

.need-item.long-term i {
    color: #f39c12;
}

.need-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.need-item ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.need-item ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.amount {
    display: inline-block;
    background: #4a90e2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 1rem;
}

.need-item.urgent .amount {
    background: #e74c3c;
}

.need-item.long-term .amount {
    background: #f39c12;
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.payment-option {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.payment-option i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.payment-option address {
    font-style: normal;
    line-height: 1.6;
}

/* Featured Projects */
.featured-projects {
    padding: 80px 0;
}

.project-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.project-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.project-image img {
    width: 100%;
    border-radius: 15px;
}

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

.tour-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.tour-card i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

/* Picture Cards */
.picture-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.impact-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.impact-card h4 {
    font-size: 1.3rem;
    margin: 1rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.impact-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Sponsorship Styles */
.sponsorship-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
}

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

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    border-radius: 10px;
}

.story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.power-text {
    font-weight: 700;
    color: #e74c3c;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.step-icon i {
    font-size: 3rem;
    color: #4a90e2;
    background: white;
    padding: 2rem;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e74c3c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Sponsorship Levels */
.sponsorship-levels {
    padding: 80px 0;
}

.levels-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

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

.level-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.level-card:hover {
    transform: translateY(-10px);
    border-color: #4a90e2;
}

.level-card.popular {
    border-color: #e74c3c;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.level-header i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.level-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.level-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.level-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.level-features i {
    color: #27ae60;
    margin-right: 0.5rem;
}

/* Payment Plans */
.payment-plans {
    padding: 80px 0;
    background: #f8f9fa;
}

.plans-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

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

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.plan-card i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

/* Personal Connection */
.personal-connection {
    padding: 80px 0;
}

.connection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.connection-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.connection-image img {
    width: 100%;
    border-radius: 15px;
}

/* What's Included */
.whats-included {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.included-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.included-item i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

/* Share Video */
.share-video {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Shop Styles */
.shop-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.shop-description, .shop-note {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
}

/* Product Categories */
.product-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

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

.category-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 2rem 1rem;
    color: #2c3e50;
}

.category-card p {
    padding: 0 2rem 2rem;
    color: #666;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
}

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

.partner-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-image img {
    width: 100%;
    border-radius: 10px;
}

.partner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.partner-info {
    margin-top: 1rem;
}

.partner-info p {
    margin-bottom: 1rem;
    color: #666;
}

/* Action Shopping */
.action-shopping {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.action-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.action-card i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.action-links {
    margin-top: 1.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin: 0.25rem;
    display: inline-block;
}

.social-share {
    margin-top: 1rem;
}

.social-share a {
    display: inline-block;
    margin: 0.25rem;
    font-size: 2rem;
    color: #4a90e2;
    transition: color 0.3s ease;
}

.social-share a:hover {
    color: #357abd;
}

/* Artist Spotlight */
.artist-spotlight {
    padding: 80px 0;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.spotlight-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.spotlight-text blockquote {
    border-left: 4px solid #4a90e2;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #666;
}

.spotlight-image img {
    width: 100%;
    border-radius: 15px;
}

/* How to Shop */
.how-to-shop {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

/* Impact Statement */
.impact-statement {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a90e2, #50c878);
    color: white;
    text-align: center;
}

.impact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Contact Styles */
.contact-intro {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
}

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

.method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px);
}

.method-card i {
    font-size: 1rem;
    color: #3265ca;
    margin-bottom: 1.5rem;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.method-card address {
    font-style: normal;
    line-height: 1.6;
    color: #666;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

/* Form validation and error states */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.form-messages {
    margin-bottom: 1.5rem;
    display: none;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Button loading state */
.btn-loading {
    display: none;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form submission feedback */
.contact-form.submitting {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive form adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* Form fallback section */
.form-fallback {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-fallback p {
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.95rem;
}

.form-fallback .btn {
    margin-top: 0.5rem;
}

.form-fallback.highlighted {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.form-fallback.highlighted p {
    color: #856404;
}

/* Get Involved */
.get-involved {
    padding: 80px 0;
}

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

.involvement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.involvement-card:hover {
    transform: translateY(-10px);
}

.involvement-card i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.involvement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Social Integration */
.social-integration {
    padding: 80px 0;
}

.social-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

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

.social-platform {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

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

.social-platform i {
    font-size: 3rem;
    color: #4a90e2;
}

.platform-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.northstar-social {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.northstar-social h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.northstar-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.northstar-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.northstar-links a:hover {
    text-decoration: underline;
}

/* Responsive Design for New Pages */
@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: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .story-grid,
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .letter-header {
        flex-direction: column;
        text-align: center;
    }

    .signature {
        text-align: center;
    }

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

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

    .poverty-solutions {
        grid-template-columns: 1fr;
    }

    .cta-grid,
    .action-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .goals-grid,
    .needs-grid,
    .payment-grid,
    .tours-grid,
    .cards-grid,
    .story-grid,
    .work-process,
    .levels-grid,
    .plans-grid,
    .categories-grid,
    .partners-grid,
    .action-grid,
    .shopping-steps,
    .impact-stats,
    .methods-grid,
    .involvement-grid,
    .social-platforms {
        grid-template-columns: 1fr;
    }
    
    .project-highlight,
    .connection-content,
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-card,
    .partner-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .northstar-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-platform {
        flex-direction: column;
        text-align: center;
    }
    
    .level-card.popular {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .letter-container {
        padding: 2rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem;
    }

    .product-image {
        object-align: center;
    
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""],
img:not([src]) {
    display: none;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

