/* About Page Styles */

.about-page {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ffecd2 100%);
    min-height: 100vh;
    padding: 2rem 0 3rem 0;
}

.about-hero {
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #5a3e36;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(90, 62, 54, 0.2);
}

.about-title-icon {
    color: #ff6b6b;
}

.about-tagline {
    font-size: 1.3rem;
    color: #7d5a50;
    max-width: 600px;
    margin: 0 auto;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.25);
    border: 2px solid rgba(255, 182, 193, 0.3);
}

.about-card h2 {
    color: #5a3e36;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-card h2 i {
    color: #ff6b6b;
}

.about-card p {
    color: #6d5147;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-card ul li {
    color: #6d5147;
    font-size: 1.05rem;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
}

.about-card ul li:last-child {
    border-bottom: none;
}

.about-card ul li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 20px 50px rgba(118, 75, 162, 0.3);
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apply-btn {
    display: inline-block;
    background: white;
    color: #764ba2;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.apply-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #667eea;
    text-decoration: none;
}

.contact-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.25);
    border: 2px solid rgba(255, 182, 193, 0.3);
}

.contact-section h2 {
    color: #5a3e36;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section-icon {
    color: #ff6b6b;
}

.contact-section p {
    color: #6d5147;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.contact-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    color: white;
    text-decoration: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    background: rgba(255, 236, 210, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.3);
}

.feature-item i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    color: #5a3e36;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #7d5a50;
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-page {
        padding: 1rem 0 2rem 0;
    }

    .about-hero {
        padding: 2rem 1rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-tagline {
        font-size: 1.1rem;
    }

    .about-card {
        padding: 1.5rem;
        border-radius: 20px;
        margin: 0 0.5rem 1.5rem 0.5rem;
    }

    .about-card h2 {
        font-size: 1.5rem;
    }

    .about-card p {
        font-size: 1rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem 1.5rem 0.5rem;
        border-radius: 20px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .apply-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .contact-section {
        padding: 1.5rem;
        margin: 0 0.5rem;
        border-radius: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .about-card h2 {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }
}
