/* soulmatesearch.css */

/* ===== Hero Section ===== */
.sms-hero {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

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

.sms-hero .hero-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
}

.sms-hero .btn-primary {
    background-color: #ff6b81;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s ease;
}

.sms-hero .btn-primary:hover {
    background-color: #ff3b5e;
}

/* ===== Brand Overview ===== */
.brand-overview {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.brand-overview h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.brand-overview p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===== Program Overview ===== */
.program-overview {
    background-color: #f8f8f8;
    padding: 60px 20px;
}

.program-overview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

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

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

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

.program-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff6b81;
}

.program-card p {
    margin-bottom: 10px;
    font-weight: 500;
}

.program-card ul {
    padding-left: 20px;
}

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

/* ===== Client Journey ===== */
.client-journey {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.client-journey h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.client-journey ol {
    list-style-position: inside;
    line-height: 1.8;
    padding-left: 20px;
}

.client-journey a {
    color: #ff6b81;
    text-decoration: underline;
}

/* ===== Price Section ===== */
.price-section {
    background: #ff6b81;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.price-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.price-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.price-section .btn-primary {
    background-color: #fff;
    color: #ff6b81;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.price-section .btn-primary:hover {
    background-color: #ffe0e5;
}

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

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

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

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

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

    .sms-hero .hero-content p {
        font-size: 1rem;
    }

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

    .program-card h3 {
        font-size: 1.1rem;
    }
}