/* ==========================================================================
   ABOUT US PAGE STYLING (Professional & Mobile Friendly)
   ========================================================================== */

.about-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Hero Section */
.about-hero {
    text-align: center;
    background: #fff;
    padding: 50px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.about-hero h1 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 10px;
}
.about-hero p {
    font-size: 18px;
    color: #28a745; /* Green Accent */
    font-weight: 500;
}

/* Main Content Area */
.about-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    color: #333;
    line-height: 1.8;
}
.about-content h2 {
    font-size: 24px;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
}
.about-content p {
    font-size: 16px;
    margin-bottom: 20px;
}
.about-content a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}
.about-content a:hover {
    text-decoration: underline;
}

/* Features Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.feature-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-card .material-icons {
    font-size: 40px;
    color: #28a745;
    margin-bottom: 15px;
}
.feature-card h3 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 0;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .about-hero h1 { font-size: 28px; }
    .about-hero p { font-size: 16px; }
    .about-content { padding: 25px; }
    .about-content h2 { font-size: 20px; }
}