/* About Us Page Styling - Flat Modern Design */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.site-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #fff
}

@media (min-width: 1400px) {
  .site-container {
    min-width: 1400px;
  }
}

@media (max-width: 1399px) {
  .site-container {
    margin: 0;
  }
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.page-wrapper {
    flex: 1 0 auto;
}

footer, .footer, #footer, #footer_new {
    flex-shrink: 0;
}

/* Main Content Container */
.about-container {
    padding: 2rem 1.5rem;
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
}

/* Hero Section - Flat Design */
.about-hero {
    text-align: center;
    padding-top: 2rem;
    background: #fff;
    color: #333;
    border-radius: 0;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.about-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* Hero Image Styling */
.about-hero .about-section {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.about-hero-image {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    max-width: 100%;
}

.about-hero-image img {
    border-radius: 8px;
    box-shadow: none;
}

.about-image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Content Sections - Flat Design */
.about-content {
    margin-bottom: 2rem;
}

.about-section {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0;
}

.about-section h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-section h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

/* Founder Section - Match Our Story Styling */
.founder-section {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0;
}

.founder-section h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Mission Section - Flat Design */
.mission-section {
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.mission-section h3 {
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.mission-section p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Target Audience Section - Flat Design */
.target-audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.audience-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
    transition: background-color 0.2s ease;
}

.audience-item:hover {
    background-color: #f8f9fa;
}

.audience-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.audience-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        padding: 1rem;
        margin: 1rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 1rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .target-audience {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-wrapper {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }
    
    .about-container {
        margin: 0.5rem;
        padding: 0.75rem;
    }
    
    .about-hero {
        padding: 1.5rem 1rem;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
    }
}
