/* lucentia.css */

/* ===== Lucentia Hero Section ===== */
.lucentia-hero {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

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

.lucentia-hero p {
    font-size: 1.5rem;
    font-style: italic;
}

/* ===== About Section ===== */
.lucentia-about {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.lucentia-about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2575fc;
}

.lucentia-about p {
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== Programs Section ===== */
.lucentia-programs {
    background-color: #f9f9f9;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.lucentia-programs h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #6a11cb;
}

.program {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.program h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #6a11cb;
}

.program p {
    margin-bottom: 15px;
}

.program ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.program ul li {
    margin-bottom: 8px;
}

/* ===== Pricing Section ===== */
.pricing-section {
    text-align: center;
    padding: 60px 20px;
}

.pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2575fc;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.price-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #6a11cb;
}

.price-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2575fc;
}

.price-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.price-card ul li {
    margin-bottom: 8px;
}

.price-card .btn-primary {
    background-color: #6a11cb;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s ease;
}

.price-card .btn-primary:hover {
    background-color: #2575fc;
}

/* ===== Disclaimer Section ===== */
.lucentia-disclaimer {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
    background-color: #fff0f5;
    border-radius: 12px;
    text-align: center;
}

.lucentia-disclaimer h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #6a11cb;
}

.lucentia-disclaimer p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 60px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2575fc;
}

.contact-section p {
    margin-bottom: 10px;
}

.contact-section a {
    color: #6a11cb;
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .lucentia-hero h1 {
        font-size: 2rem;
    }

    .lucentia-hero p {
        font-size: 1.2rem;
    }

    .program h3,
    .price-card h3 {
        font-size: 1.2rem;
    }

    .program-grid,
    .price-grid {
        grid-template-columns: 1fr;
    }
}