@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f3f3;
    margin: 0;
    padding-top: 80px;
    display: flex;
    flex-direction: column; 
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.main-container {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.about-container {
    padding: 100px 15%;
    background-color: #f3f3f3;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* Flexbox Layout */
.about-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

/* Left Image */
.image-left {
    width: 280px;
    height: auto;
    overflow: hidden;
    flex: 1;
    display: flex;
    border-radius: 12px;
}

.image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Image + Experience Box */
.image-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 5%;
}

.image-container {
    width: 100%;
    flex: 5;
    display: flex;
    overflow: hidden;
    border-radius: 12px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience Box */
.experience-box {
    background-color: #AB6886;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-box span {
    font-size: 28px;
    font-weight: 600;
}

.experience-box p {
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Text Section */
.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fde5f0;
    padding: 40px;
    border-radius: 12px;
}

.about-text h4 {
    color: #AB6886;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Features List */
.features {
    display: flex;
    gap: 40px;
    padding-bottom: 20px;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.features ul li {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
}

/* Learn More Button */
.learn-more {
    background-color: #AB6886;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.learn-more:hover {
    background-color: #914567;
}

/* New Section */
.about-plan-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    padding: 0 15%;
    width: 100%;
    box-sizing: border-box;
}

/* Plan Content */
.plan-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.7) url('../images/home_munchi_1.png');
    background-blend-mode: darken;
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 12px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plan-text h2 {
    font-size: 28px;
    font-weight: 600;
}

.plan-text p {
    font-size: 14px;
    margin-bottom: 25px;
}

.contact-btn {
    background-color: #AB6886;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.contact-btn:hover {
    background-color: #914567;
}

/* Details Section */
.about-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-box-top, .detail-box {
    background-color: #fde5f0;
    padding: 20px;
    border-radius: 12px;
}

.detail-box-top h3, .detail-box h3 {
    color: #AB6886;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

/* Benefits Section */
.benefits-container {
    text-align: center;
    padding: 60px 15%;
    background-color: #f3f3f3;
    width: 100%;
    box-sizing: border-box;
}

.benefits-container h2 {
    font-size: 40px;
    font-weight: 700;
    color: #492134;
    margin-bottom: 40px;
    text-align: left;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-number {
    font-size: 24px;
    font-weight: 700;
    color: #AB6886;
}

.benefit-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #311522;
    margin: 0;
}

.benefit-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* --- RESPONSIVE FIXES FOR MOBILE & TABLETS --- */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 900px) {
    .about-container { padding: 60px 5%; }
    .about-content { flex-direction: column; }
    
    .image-left, .image-right, .about-text { width: 100%; flex: auto; }
    
    .image-right { flex-direction: column; gap: 20px; }
    .image-container { max-height: 300px; }
    
    .features { flex-direction: column; gap: 10px; }
    
    .about-plan-container { flex-direction: column; padding: 0 5%; gap: 20px; }
    .about-details { width: 100%; }
    .plan-content { width: 100%; padding: 30px 20px; }
    
    .benefits-container { padding: 40px 5%; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefits-container h2 { text-align: center; font-size: 30px; }
}