/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

/* Header Styles */
header {
    background-color: #28a745;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* Main Content Styles */
main {
    padding: 40px 0;
}

.intro, .diet-plans, .cta {
    margin-bottom: 40px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #28a745;
}

.intro p, .cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #666;
}

/* Diet Plans Section */
.plans {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.plan {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s ease;
}

.plan:hover {
    transform: translateY(-5px);
}

.plan h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #28a745;
}

.plan p {
    color: #555;
}

/* Call to Action Section */
.cta {
    text-align: center;
    background-color: #28a745;
    color: white;
    padding: 40px;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: white;
    color: #28a745;
    font-size: 1.2em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ddd;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}
