
/* Global Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('../img/peaceful-meadow.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
}

/* Hero Section */
.hero {
    background: rgba(255, 255, 255, 0.85);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 3px solid #eee;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 25px;
}

.hero .cta-button {
    background-color: #6e8f72;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.hero .cta-button:hover {
    background-color: #4e7051;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 0;
}

.feature-item {
    flex: 1 1 300px;
    margin: 10px;
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-item h3 {
    color: #6e8f72;
}

/* Steps Section */
.steps {
    background-color: rgba(240, 240, 240, 0.8);
    padding: 40px 20px;
    text-align: center;
}

.steps h2 {
    margin-bottom: 25px;
}

.step {
    margin-bottom: 20px;
    font-size: 1.15rem;
}

/* Testimonial */
.testimonial {
    background-color: #fff;
    padding: 50px 20px;
    font-style: italic;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-weight: bold;
}

/* Pricing */
.pricing {
    background-color: rgba(250, 250, 250, 0.95);
    padding: 40px 20px;
    text-align: center;
}

.plan {
    display: inline-block;
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    margin: 20px auto;
}

.plan h3 {
    color: #6e8f72;
}

.plan p {
    margin: 8px 0;
    font-size: 1.1rem;
}

/* Email Signup */
.email-signup {
    background-color: rgba(255, 255, 255, 0.96);
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #eee;
}

.email-signup input[type="email"],
.email-signup input[type="text"] {
    padding: 10px;
    width: 250px;
    margin: 10px 5px;
    border-radius: 5px;
    border: 1px solid #bbb;
}

.email-signup button {
    padding: 12px 25px;
    background-color: #6e8f72;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.email-signup button:hover {
    background-color: #4e7051;
}

/* Carousel Styling */
.carousel-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.carousel-container img {
    height: 200px;
    border-radius: 8px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: #2f4f4f;
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 0.95rem;
}
footer a {
    color: #ddd;
}
footer a:hover {
    color: #fff;
}
