/* About Us Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #172153;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}
.separate-containers .inside-article{
    padding: 0px;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #172153 0%, #1e3c72 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

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

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

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

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

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
    color: #172153;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f56f46;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3c72 0%, #172153 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.team-member h3 {
    margin-bottom: 8px;
    color: #f56f46;
}

.member-role {
    color: #172153;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-expertise {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.expertise-tag {
    background: #e3ecff;
    color: #172153;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #f56f46;
    color: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

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

.trust-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.trust-icon {
    color: #172153;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.trust-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.trust-item p {
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
}

/* Goal Section */
.goal-section {
    padding: 80px 0;
    background: white;
}

.goal-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #f56f46;
}

.goal-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.goal-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkmark {
    color: #172153;
    font-weight: bold;
    font-size: 1.2rem;
}

.goal-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: linear-gradient(135deg, #1e3c72 0%, #172153 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(42, 82, 152, 0.3);
}

.visual-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* State Links Section */
.state-links {
    padding: 80px 0;
    background: #f8f9fa;
}

.state-links h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #172153;
    font-size: 2.2rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.state-link {
    background: white;
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #172153;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.state-link:hover {
    background: #172153;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f56f46;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1e3c72 0%, #172153 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.secondary {
    background: transparent;
    color: #172153;
    border: 2px solid #172153;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

.cta-button.secondary:hover {
    background: #172153;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .goal-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .states-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .cta-button {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
}