/**
 * About Page Styles for Discolink
 * Developed by Bishal Mondal
 * All rights reserved from Bangladesh
 * LinkedIn: www.linkedin.com/in/bishal-mondal2025
 * Portfolio: bishalmondal.com
 */

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero .lead {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    padding: 60px 0;
}

.our-story h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.our-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--background-color);
    padding: 80px 0;
}

.step-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: var(--background-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
}

/* Trust & Safety Section */
.trust-safety {
    padding: 80px 0;
    background-color: var(--background-color);
}

.trust-card {
    padding: 30px;
    border-radius: 15px;
    background: var(--background-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-card i {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .lead {
        font-size: 1.2rem;
    }

    .our-story {
        text-align: center;
    }

    .our-story img {
        margin-bottom: 30px;
    }

    .step-card {
        margin-bottom: 30px;
    }
} 