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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

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

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

.hero-image {
    flex: 1;
    text-align: center;
}

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

/* Services Overview */
.services-overview {
    padding: 80px 20px;
    background: white;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.service-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.service-card a:hover {
    text-decoration: underline;
}

/* Featured Businesses */
.featured-businesses {
    padding: 80px 20px;
    background: #f8f9fa;
}

.featured-businesses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.featured-businesses > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

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

.featured-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.featured-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.featured-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.featured-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

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

/* Local Insights */
.local-insights {
    padding: 80px 20px;
    background: white;
}

.local-insights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.insight-text p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1.1rem;
}

.insight-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.insight-text a:hover {
    text-decoration: underline;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: #667eea;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    line-height: 1.6;
}

.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: #667eea;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(102, 126, 234, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

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

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

    .insights-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .insight-image {
        order: -1;
    }

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

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

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

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

    .services-overview h2,
    .featured-businesses h2,
    .local-insights h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .service-card,
    .featured-item {
        padding: 1.5rem;
    }
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Page Hero Styles */
.page-hero {
    margin-top: 70px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    text-align: center;
    color: white;
}

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

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Beauty Intro */
.beauty-intro {
    padding: 80px 20px;
    background: white;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.intro-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.intro-content a:hover {
    text-decoration: underline;
}

/* Category Grid */
.salon-categories {
    padding: 80px 20px;
    background: #f8f9fa;
}

.salon-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.category-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.category-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-salons {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.featured-salons h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.featured-salons ul {
    list-style: none;
}

.featured-salons li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

/* Industry Insights */
.industry-insights {
    padding: 80px 20px;
    background: white;
}

.industry-insights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.insight-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.insight-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.insight-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Salon Spotlight */
.salon-spotlight {
    padding: 80px 20px;
    background: #f8f9fa;
}

.salon-spotlight h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.spotlight-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.spotlight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

/* Tips Grid */
.booking-tips {
    padding: 80px 20px;
    background: white;
}

.booking-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.tip-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.tip-card h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tip-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Local Partnerships */
.local-partnerships {
    padding: 80px 20px;
    background: #f8f9fa;
}

.local-partnerships h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.local-partnerships > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.partnership-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.partnership-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partnership-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Seasonal Trends */
.seasonal-trends {
    padding: 80px 20px;
    background: white;
}

.seasonal-trends h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.seasonal-content {
    max-width: 900px;
    margin: 0 auto;
}

.seasonal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    margin-top: 2rem;
}

.seasonal-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

/* Beauty Education */
.beauty-education {
    padding: 80px 20px;
    background: #f8f9fa;
}

.beauty-education h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.beauty-education > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.education-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.education-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.education-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* CTA Beauty */
.cta-beauty {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    text-align: center;
    color: white;
}

.cta-beauty h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-beauty p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-beauty .btn-primary {
    background: white;
    color: #ff6b9d;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-beauty .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

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

.cta-beauty .btn-secondary:hover {
    background: white;
    color: #ff6b9d;
    transform: translateY(-3px);
}

/* Responsive adjustments for beauty page */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-examples {
        grid-template-columns: 1fr;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .category-card h3 {
        font-size: 1.5rem;
    }
    
    .tip-card {
        padding: 1.5rem;
    }
}

/* Home Garden Page Specific Styles */
.page-hero.home-garden {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.home-garden-intro {
    padding: 80px 20px;
    background: white;
}

.home-garden-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.home-garden-intro .intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Categories */
.service-categories {
    padding: 80px 20px;
    background: #f8f9fa;
}

.service-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.category-card.featured {
    border: 3px solid #4facfe;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.service-highlights {
    margin-top: 2rem;
    padding: 2rem;
    background: #e3f2fd;
    border-radius: 15px;
    border-left: 5px solid #4facfe;
}

.service-highlights h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-highlights ul {
    list-style: none;
    margin-bottom: 1rem;
}

.service-highlights li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    padding-left: 1rem;
    position: relative;
}

.service-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

/* Project Showcase */
.project-showcase {
    padding: 80px 20px;
    background: white;
}

.project-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

.showcase-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

/* Seasonal Maintenance */
.seasonal-maintenance {
    padding: 80px 20px;
    background: #f8f9fa;
}

.seasonal-maintenance h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.seasonal-maintenance > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.season-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.season-card.spring {
    border-top: 5px solid #4caf50;
}

.season-card.summer {
    border-top: 5px solid #ff9800;
}

.season-card.autumn {
    border-top: 5px solid #f44336;
}

.season-card.winter {
    border-top: 5px solid #2196f3;
}

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

.season-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.maintenance-checklist h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.maintenance-checklist ul {
    list-style: none;
}

.maintenance-checklist li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    padding-left: 1rem;
    position: relative;
}

.maintenance-checklist li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

/* Sustainability Focus */
.sustainability-focus {
    padding: 80px 20px;
    background: white;
}

.sustainability-focus h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.sustainability-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.sustainability-text h4 {
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
}

.sustainability-text ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.sustainability-text li {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 10px;
    color: #2e7d32;
    font-weight: 500;
}

/* Local Network */
.local-network {
    padding: 80px 20px;
    background: #f8f9fa;
}

.local-network h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.local-network > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.network-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.network-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.network-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Emergency Services */
.emergency-services {
    padding: 80px 20px;
    background: white;
}

.emergency-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.emergency-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.emergency-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-contacts h4 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

.emergency-contact {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
}

.emergency-contact h5 {
    color: #e65100;
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.emergency-tips {
    background: #f3e5f5;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #9c27b0;
}

.emergency-tips h4 {
    color: #4a148c;
    margin-bottom: 1rem;
}

.emergency-tips ul {
    list-style: none;
}

.emergency-tips li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    padding-left: 1rem;
    position: relative;
}

.emergency-tips li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Investment Advice */
.investment-advice {
    padding: 80px 20px;
    background: #f8f9fa;
}

.investment-advice h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.investment-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.investment-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.investment-item.high-roi {
    border-top: 5px solid #4caf50;
}

.investment-item.medium-roi {
    border-top: 5px solid #ff9800;
}

.investment-item.long-term {
    border-top: 5px solid #2196f3;
}

.investment-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.investment-item ul {
    list-style: none;
}

.investment-item li {
    margin-bottom: 0.8rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.investment-item strong {
    color: #2c3e50;
}

/* CTA Home Garden */
.cta-home-garden {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    text-align: center;
    color: white;
}

.cta-home-garden h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-home-garden p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-home-garden .btn-primary {
    background: white;
    color: #4facfe;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-home-garden .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

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

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

/* Responsive adjustments for home-garden page */
@media (max-width: 768px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-image {
        order: -1;
    }
    
    .seasonal-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .network-examples {
        grid-template-columns: 1fr;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .sustainability-text ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .season-card,
    .network-item,
    .investment-item,
    .emergency-contact {
        padding: 1.5rem;
    }
    
    .service-highlights {
        padding: 1.5rem;
    }
    
    .emergency-tips {
        padding: 1.5rem;
    }
    
    .sustainability-focus h2,
    .local-network h2,
    .emergency-services h2,
    .investment-advice h2 {
        font-size: 2rem;
    }
}

/* Business Page Specific Styles */
.page-hero.business {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.business-intro {
    padding: 80px 20px;
    background: white;
}

.business-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.business-intro .intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Business Categories */
.business-categories {
    padding: 80px 20px;
    background: #f8f9fa;
}

.business-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.service-details {
    margin-top: 2rem;
    padding: 2rem;
    background: #e8f4fd;
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.service-details h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.service-details li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    padding-left: 1rem;
    position: relative;
}

.service-details li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.8rem;
}

/* Business Ecosystem */
.business-ecosystem {
    padding: 80px 20px;
    background: white;
}

.business-ecosystem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.ecosystem-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Success Stories */
.success-stories {
    padding: 80px 20px;
    background: #f8f9fa;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.story-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.story-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Business Trends */
.business-trends {
    padding: 80px 20px;
    background: white;
}

.business-trends h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.trends-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.trend-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-top: 5px solid #667eea;
}

.trend-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.trend-item p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Networking Events */
.networking-events {
    padding: 80px 20px;
    background: #f8f9fa;
}

.networking-events h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.events-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.events-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.event-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.event-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.event-item p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Business Support */
.business-support {
    padding: 80px 20px;
    background: white;
}

.business-support h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.support-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.support-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.support-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.support-item h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.support-item p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Future Outlook */
.future-outlook {
    padding: 80px 20px;
    background: #f8f9fa;
}

.future-outlook h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.outlook-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.outlook-text h4 {
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
}

.outlook-text ul {
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
}

.outlook-text li {
    background: #e8f5e8;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    color: #2e7d32;
    font-weight: 500;
    padding-left: 2rem;
    position: relative;
}

.outlook-text li:before {
    content: "🚀";
    position: absolute;
    left: 0.5rem;
}

/* Business Directory */
.business-directory {
    padding: 80px 20px;
    background: white;
}

.business-directory h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.business-directory > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.directory-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.directory-item h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.directory-item ul {
    list-style: none;
}

.directory-item li {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.6;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.directory-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

/* CTA Business */
.cta-business {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-business h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-business p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-business .btn-primary {
    background: white;
    color: #667eea;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-business .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

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

.cta-business .btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Responsive adjustments for business page */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .trends-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .support-services {
        grid-template-columns: 1fr;
    }
    
    .directory-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .story-card {
        padding: 2rem;
    }
    
    .trend-item,
    .event-item,
    .support-item,
    .directory-item {
        padding: 1.5rem;
    }
    
    .service-details {
        padding: 1.5rem;
    }
    
    .business-intro h2,
    .business-categories h2,
    .business-ecosystem h2,
    .success-stories h2,
    .business-trends h2,
    .networking-events h2,
    .business-support h2,
    .future-outlook h2,
    .business-directory h2 {
        font-size: 2rem;
    }
}

/* About Page Specific Styles */
.page-hero.about {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

/* Our Story */
.our-story {
    padding: 80px 20px;
    background: white;
}

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

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

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

/* Mission Vision */
.mission-vision {
    padding: 80px 20px;
    background: #f8f9fa;
}

.mission-vision h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

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

.mission-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Our Values */
.our-values {
    padding: 80px 20px;
    background: white;
}

.our-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.our-values > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.value-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #3498db;
    transition: all 0.3s ease;
}

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

.value-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.value-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

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

/* Our Approach */
.our-approach {
    padding: 80px 20px;
    background: #f8f9fa;
}

.our-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.approach-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.approach-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
    padding-top: 3rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.step-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

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

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 5px solid #3498db;
}

.team-member h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.team-member p:first-of-type {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.team-member p:last-child {
    font-style: italic;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #3498db;
}

/* Our Impact */
.our-impact {
    padding: 80px 20px;
    background: #f8f9fa;
}

.our-impact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.impact-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.stat-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Community Involvement */
.community-involvement {
    padding: 80px 20px;
    background: white;
}

.community-involvement h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.involvement-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.involvement-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.involvement-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #27ae60;
}

.involvement-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.involvement-item p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.involvement-item a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
}

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

/* Partnerships */
.partnerships {
    padding: 80px 20px;
    background: #f8f9fa;
}

.partnerships h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.partnerships-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.partnership-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partnership-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Future Plans */
.future-plans {
    padding: 80px 20px;
    background: white;
}

.future-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.future-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.future-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.goal-item {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.goal-item h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.goal-item p {
    line-height: 1.7;
    opacity: 0.9;
}

.goal-item a {
    color: #87ceeb;
    text-decoration: none;
    font-weight: 500;
}

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

/* Testimonials About */
.testimonials-about {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonials-about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #3498db;
    line-height: 1;
}

.testimonial-item p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #3498db;
    font-size: 0.9rem;
}

/* CTA About */
.cta-about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-about .btn-primary {
    background: white;
    color: #2c3e50;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-about .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

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

.cta-about .btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .involvement-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .future-goals {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mission-card {
        padding: 2rem;
    }
    
    .mission-icon {
        font-size: 3rem;
    }
    
    .value-item,
    .step-item,
    .team-member,
    .stat-item,
    .involvement-item,
    .partnership-item,
    .goal-item,
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .story-text h2,
    .mission-vision h2,
    .our-values h2,
    .our-approach h2,
    .team-section h2,
    .our-impact h2,
    .community-involvement h2,
    .partnerships h2,
    .future-plans h2,
    .testimonials-about h2 {
        font-size: 2rem;
    }
}

/* Contact Page Specific Styles */
.page-hero.contact {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* Contact Intro */
.contact-intro {
    padding: 80px 20px;
    background: white;
}

.contact-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.contact-intro .intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro .intro-content a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

.contact-intro .intro-content a:hover {
    text-decoration: underline;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.method-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-details strong {
    color: #e74c3c;
}

.method-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 1rem;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 20px;
    background: white;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-form-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #e74c3c;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* FAQ Contact */
.faq-contact {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.faq-item a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

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

/* Emergency Contacts */
.emergency-contacts {
    padding: 80px 20px;
    background: white;
}

.emergency-contacts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.emergency-contacts > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.emergency-card {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    text-align: center;
}

.emergency-card h4 {
    color: #e65100;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.emergency-card p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.emergency-card p:nth-child(3) {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e65100;
}

.emergency-note {
    background: #f3e5f5;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #9c27b0;
    text-align: center;
}

.emergency-note p {
    color: #4a148c;
    margin: 0;
    font-weight: 500;
}

/* Location Map */
.location-map {
    padding: 80px 20px;
    background: #f8f9fa;
}

.location-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

.map-info p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.location-details h4 {
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
}

.location-details p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.map-placeholder {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-box {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-box h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.map-box p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

/* Office Hours */
.office-hours {
    padding: 80px 20px;
    background: white;
}

.office-hours h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.hours-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
}

.hours-card h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.hours-list {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item.closed {
    background: #f8f9fa;
    color: #7f8c8d;
}

.day {
    font-weight: 500;
    color: #2c3e50;
}

.time {
    color: #e74c3c;
    font-weight: 600;
}

.hour-item.closed .day,
.hour-item.closed .time {
    color: #7f8c8d;
}

.hours-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.holiday-notice {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #27ae60;
    text-align: center;
}

.holiday-notice h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.holiday-notice p {
    color: #2e7d32;
    margin: 0;
}

/* Social Media */
.social-media {
    padding: 80px 20px;
    background: #f8f9fa;
}

.social-media h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.social-media > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.social-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.social-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.social-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-card .btn {
    width: 100%;
}

/* CTA Contact */
.cta-contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    text-align: center;
    color: white;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-contact .btn-primary {
    background: white;
    color: #e74c3c;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-contact .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

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

.cta-contact .btn-secondary:hover {
    background: white;
    color: #e74c3c;
    transform: translateY(-3px);
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .method-card {
        padding: 2rem;
    }
    
    .method-icon {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .faq-item,
    .emergency-card,
    .hours-card,
    .social-card {
        padding: 1.5rem;
    }
    
    .map-box {
        padding: 2rem;
    }
    
    .contact-methods h2,
    .contact-form-section h2,
    .faq-contact h2,
    .emergency-contacts h2,
    .location-map h2,
    .office-hours h2,
    .social-media h2 {
        font-size: 2rem;
    }
}

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

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #27ae60;
    background-color: #f2fdf5;
}

/* Loading state for form submission */
.contact-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.contact-form.loading .btn {
    background: #bdc3c7;
    cursor: not-allowed;
}

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

/* Print styles for contact information */
@media print {
    .contact-methods,
    .emergency-contacts,
    .office-hours {
        break-inside: avoid;
    }
    
    .method-card,
    .emergency-card,
    .hours-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .contact-form-section,
    .social-media,
    .cta-contact {
        display: none;
    }
}