/* About Page Styles */
body {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Noto Sans Malayalam', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

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

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f00 0%, #f00 100%);
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 3rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.3rem;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }
}

/* Section Styles */
.about-section {
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h2 {
    font-size: 2rem;
    color: #ff0000;
    margin: 0 0 30px 0;
    font-weight: 700;
    text-align: center;
}

.about-section h3 {
    font-size: 1.3rem;
    color: #ff0000;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.about-section p {
    font-size: 1.05rem;
    color: #4b5563;
    margin: 0 0 20px 0;
    line-height: 1.7;
}

/* Two Column Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr!important;
        gap: 30px;
    }
}

/* Stats Box */
.stats-box {
    background-color: #ffefef;
    border: 2px solid #facdcd;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff0000;
    margin: 0;
}

.stat-label {
    font-size: 1.1rem;
    color: #4b5563;
    margin: 5px 0 0 0;
}

.stat-divider {
    height: 2px;
    background-color: #facdcd;
    margin: 20px 0;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #ffefef;
    color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    color: #1f2937;
    margin: 0 0 10px 0;
    text-align: center;
}

.step-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #ff0000;
    color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.1rem;
    color: #1f2937;
    margin: 0 0 8px 0;
    text-align: left;
}

.feature-content p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

/* Content Box */
.content-box {
    background-color: #f9fafb;
    border-left: 4px solid #2563eb;
    padding: 30px;
    margin: 30px 0;
    border-radius: 4px;
}

.content-box h3 {
    color: #ff0000;
    margin-top: 0;
}

.content-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.content-box li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #4b5563;
    font-size: 1.05rem;
}

.content-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Highlight Box */
.highlight-box {
    background-color: #eff6ff;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.highlight-box h3 {
    color: #ff0000;
    text-align: left;
    margin-top: 0;
}

.highlight-box p {
    color: #4b5563;
    margin-bottom: 15px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-box {
    text-align: center;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-box h3 {
    color: #ff0000;
    margin-bottom: 20px;
}

.contact-box p {
    font-size: 1.1rem;
    color: #4b5563;
}

.contact-box a {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}