/* ===== SERENE SECTION ===== */
.serene-section {
    padding: 100px 0;
    background: rgb(245, 245, 220);
    position: relative;
}

.serene-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.serene-section .section-title {
    color: purple;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: -250px;
}

.serene-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: bold;
}

/* Serene Grid Layout */
.serene-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Side - Feature Image */
.serene-feature {
    position: relative;
    height: 100%;
}

.serene-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.serene-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 30px;
    color: white;
}

.serene-feature-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.3;
}

/* Right Side - Features Grid */
.serene-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.serene-feature-card {
    background: #f9f9f9;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.serene-feature-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.serene-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.serene-feature-heading {
    color: #222;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.serene-feature-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .serene-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .serene-image {
        height: 400px;
    }
    
    .serene-features-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .serene-section {
        padding: 60px 0;
    }
    
    .serene-features-grid {
        grid-template-columns: 1fr;
    }
    
    .serene-image {
        height: 350px;
    }
    
    .serene-feature-title {
        font-size: 1.5rem;
    }
    
    .serene-feature-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .serene-image {
        height: 300px;
    }
    
    .serene-feature-title {
        font-size: 1.3rem;
    }
}