/* ========================================
   MODERN ABOUT PAGE STYLES
======================================== */
.about-container {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* ========================================
   HERO SECTION
======================================== */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ========================================
   ABOUT SECTIONS
======================================== */
.about-sections {
    padding: 30px 0;
    background: #f8f9fa;
}

.about-section {
    margin-bottom: 30px;
    background: white;
    border-radius: 6px;
    padding: 25px;
    border: 1px solid #e9ecef;
}

.about-section:last-child {
    margin-bottom: 0;
}

.section-content {
    max-width: 100%;
}

.section-header {
    margin-bottom: 20px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

.section-text p {
    margin-bottom: 15px;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features-section {
    padding: 30px 0;
    background: white;
}

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

.section-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.3rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.85rem;
}

/* ========================================
   FOUNDER SECTION
======================================== */
.founder-section {
    padding: 40px 0;
    background: white;
}

.founder-content {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo {
    width: 400px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.founder-info {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

.founder-title {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 25px;
    font-weight: 500;
}

.founder-bio {
    margin-bottom: 30px;
}

.founder-bio p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 15px;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.credential-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.credential-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

/* ========================================
   CALL TO ACTION SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: white;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
    min-width: 140px;
    justify-content: center;
}

.btn i {
    font-size: 0.9rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.cta-stats {
    display: flex;
    justify-content: center;
        gap: 40px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-stat {
        text-align: center;
    }
    
.cta-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-stat .stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .about-hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-sections,
    .features-section,
    .cta-section {
        padding: 25px 0;
    }
    
    .about-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .founder-section {
        padding: 30px 0;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .founder-photo {
        width: 350px;
        height: 100%;
    }
    
    
    .founder-info {
        padding-left: 0;
    }
    
    .founder-name {
        font-size: 1.6rem;
    }
    
    .founder-credentials {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .cta-stats {
        gap: 25px;
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .cta-stat .stat-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .founder-photo {
        width: 250px;
        height: 100%;
    }
    
    
    .founder-name {
        font-size: 1.4rem;
    }
    
    .founder-title {
        font-size: 1rem;
    }
    
    .founder-bio p {
        font-size: 0.9rem;
    }
    
    .credential-item {
        padding: 10px 12px;
    }
    
    .credential-item span {
        font-size: 0.85rem;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-section {
        padding: 15px;
    }
}
