/* PaysMore Mentors Page Styles */

:root {
    --primary: #2E7D32; /* Deep green */
    --accent: #4CAF50; /* Green accent */
    --text: #ffffff;
    --bg-light: #f0f8f0;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    text-align: justify;
}

/* Hero Section */
.paysmore-hero {
    background-image: url('images/pmentors.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
}

.paysmore-hero .hero-overlay {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paysmore-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px var(--shadow);
}

/* Intro Section */
.paysmore-intro {
    padding: 60px 20px;
    background: var(--text);
    text-align: center;
}

.paysmore-intro p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #555;
}

.paysmore-intro ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.paysmore-intro li {
    margin-bottom: 0.5rem;
}

/* What We Offer Section */
.what-we-offer {
    padding: 60px 20px;
    background: var(--bg-light);
}

.what-we-offer h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: var(--text);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 8px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow);
}

.offer-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.offer-card p {
    color: #666;
}

/* Our Promise Section */
.our-promise {
    padding: 60px 20px;
    background: var(--text);
    text-align: center;
}

.our-promise h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.our-promise p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}


/* Contact Section */
.contact-booking {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.contact-booking h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-booking p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #555;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .paysmore-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.paysmore-intro,
.what-we-offer,
.our-promise,
.contact-booking {
    animation: fadeUp 0.6s ease-out;
}