/* filepath: c:\Users\shiva\Projects\Smart PDF Tools\static\css\about.css */
.about-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
    padding: 40px 0;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.about-section h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-section p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-grid {
    margin-top: 60px;
    text-align: center;
}

.values-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 30px;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
    }
}