/* About Page Styles */
.about-container {
    max-width: 1200px;
}

.about-hero {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.about-hero h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.section-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.section-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

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

.section-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-visual svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px var(--shadow));
}

/* How It Works */
.how-it-works {
    margin-bottom: 4rem;
}

.how-it-works h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 16px var(--shadow);
}

.step-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Why Us Section */
.why-us-section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    border-radius: 20px;
}

.why-us-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.social-section {
    display: flex;
    justify-content: stretch;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.social-content{
    width: 100%;
    box-sizing: border-box;
}

.social-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.social-items{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-item {
    flex: 0 0 calc(50% - 0.5rem);
    box-sizing: border-box;
    padding: 1rem;
    /*margin: 1rem;*/
    background-color: #2C5F8D;
    color: white;
    border-radius: 15px;
    text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
    .about-hero h2 {
        font-size: 2.5rem;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .section-visual {
        order: -1;
    }

    .how-it-works h3,
    .why-us-section h3,
    .values-section h3,
    .cta-section h3 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 1rem;
    }

    .about-hero h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 1.5rem;
    }

    .section-content h3 {
        font-size: 1.5rem;
    }

    .section-content p {
        font-size: 1rem;
    }

    .why-us-section,
    .cta-section {
        padding: 2rem 1rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

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

    .social-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .about-hero h2 {
        font-size: 1.75rem;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
