/* About Page Specific Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

/* Hero Section */
.about-hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border-radius: 16px;
    margin-bottom: 4rem;
}

.about-title {
    font-family: sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: #1961a0;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Section */
.about-features-section {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.about-image-container {
    margin-bottom: 2rem;
}

.about-network-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-link {
    background: #1E73BE;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.about-link:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Companies Section */
.companies-section {
    padding: 4rem 0;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 4rem;
}

.section-title {
    font-family: sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.company-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(30, 115, 190, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 115, 190, 0.1);
    border-color: #1E73BE;
}

.company-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: grayscale(0%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.company-card:hover .company-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 115, 190, 0.05);
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: #1E73BE;
    opacity: 0.2;
    font-family: sans-serif;
    line-height: 1;
}

.testimonial-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 3rem 0;
    opacity: 0.5;
}

/* Support Section */
.support-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #1E73BE 0%, #1d4ed8 100%);
    color: white;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.support-title {
    font-family: sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-button {
    background: white;
    color: #1E73BE;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.support-button:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Contact Info */
.contact-info {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.address-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.email-link {
    color: #1E73BE;
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        padding: 100px 1rem 2rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .about-hero-section {
        padding: 3rem 1rem;
        margin-bottom: 2rem;
    }
    
    .about-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .company-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .support-section {
        padding: 2rem 1rem;
    }
    
    .support-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 15px;
        left: 20px;
    }
}