/* Main Content */
.main-content {
    padding: 140px 0 80px;
    background: var(--gray-50);
    min-height: 100vh;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 60px;
    box-shadow: var(--shadow-soft);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.intro-section {
    margin-bottom: 50px;
}

.intro-text {
    font-size: 20px;
    color: var(--gray-700);
    line-height: 1.7;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(255, 248, 225, 0.3) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 10px;
}

.section p {
    color: var(--gray-800);
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 16px;
}

.mission-box {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 207, 255, 0.2) 100%);
    border: 2px solid var(--accent-blue);
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-blue);
    text-align: center;
}

.mission-box p {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0;
}

.company-info {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border-left: 3px solid var(--gold);
}

.company-info p {
    margin: 0;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.15);
    border-color: var(--accent-blue);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.vision-box {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(209, 250, 229, 0.3) 100%);
    border: 2px solid #2ecc71;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    border-left: 4px solid #27ae60;
    text-align: center;
}

.vision-box p {
    font-size: 18px;
    font-weight: 500;
    color: #27ae60;
    margin: 0;
}

.contact-section {
    background: var(--light-blue);
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
}

.contact-info {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 10px;
}

.email-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.footer-note {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0 0 0;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.footer-note p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-600);
}

.footer-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-blue);
}

/* Animation for feature cards */
.feature-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-container {
        padding: 40px 30px;
        margin: 20px;
    }

    .page-title {
        font-size: 32px;
    }

    .intro-text {
        font-size: 18px;
        padding: 25px;
    }

    .section h2 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-box p,
    .vision-box p {
        font-size: 16px;
    }
} 