/* --- General Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fffaf6;
    color: #333;
    line-height: 1.6;
}

/* --- Header --- */
header {
    background: linear-gradient(135deg, #ffb6c1, #ffe4e1);
    text-align: center;
    padding: 40px 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

header img.logo {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #ff69b4;
}

header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: #4d4d4d;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    color: #555;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 20px 50px;
    padding: 15px;
    background: #ffdde1;
    border-radius: 15px;
}

nav a {
    color: #4d4d4d;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #ff69b4;
    color: white;
    transform: scale(1.1);
}

/* --- About Section --- */
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto;
    flex-wrap: wrap;
}

.about-img {
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.about-content p {
    max-width: 600px;
    font-size: 1rem;
    color: #555;
}

/* --- Ingredients List --- */
.ingredients {
    columns: 2;
    column-gap: 40px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ingredients li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.ingredients li::before {
    content: "🌱";
    position: absolute;
    left: 0;
}

/* --- Benefit Cards --- */
.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.benefit-cards .card {
    background: #fff0f5;
    padding: 25px;
    border-radius: 20px;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-weight: 600;
    transition: transform 0.3s;
}

.benefit-cards .card:hover {
    transform: scale(1.05);
    background: #ffdde1;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255,20,147,0.4);
}

/* --- Feedback Section --- */
.feedback-container {
    background: #ffffff;
    max-width: 800px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-align: center;
}

.feedback-container iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

/* --- Reviews Section --- */
#reviews {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.review {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.review strong {
    display: block;
    margin-top: 10px;
    text-align: right;
    color: #ff69b4;
}

/* --- Footer --- */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

/* --- Responsive --- */
@media (max-width:768px){
    .about-content {
        flex-direction: column;
    }

    .ingredients {
        columns: 1;
    }
}
