/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2d3436; /* Use the dark grey (#2d3436) for text */
    background-color: #f7f7f7; /* Light background for contrast */
}

/* Header Styles */
header {
    background: linear-gradient(to right, #fdcb6e, #ff7675); /* Use gradient of yellow and coral */
    color: white;
    padding: 20px 30px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffe0ec; /* Soft light background to complement the gradient */
    color: #2d3436; /* Dark text for readability */
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero button {
    background: #ff7675; /* Coral button */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.hero button:hover {
    background: #fdcb6e; /* Light yellow on hover */
}

/* Section Styles */
section {
    padding: 50px 20px;
    text-align: center;
}

/* About Section */
.about {
    background-color: #fdcb6e; /* Soft yellow background */
}

.about h2, .products h2, .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d3436; /* Dark text color */
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #2d3436; /* Use the dark color for readability */
}

/* Products Section */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center; /* Ensures the text inside is centered */
}

.products h2 {
    width: 100%; /* Ensures the heading spans the full width of the container */
    text-align: center; /* Centers the heading */
    margin-bottom: 20px;
    color: #2d3436; /* Dark heading color */
}

.product {
    margin: 20px;
    max-width: 300px;
    text-align: left;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.product h3 {
    font-size: 1.4rem;
    margin: 10px 0;
    color: #ff7675; /* Use the coral color for headings */
}

.product p {
    color: #2d3436; /* Dark text for product descriptions */
}

/* Testimonials Section */
.testimonials {
    background-color: #ffe0ec; /* Soft pink background to balance the tone */
}

.testimonial {
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    color: #2d3436; /* Dark text for testimonials */
}

.testimonial span {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    color: #ff7675; /* Coral color for name */
}

/* Footer Styles */
footer {
    background-color: #2d3436; /* Dark footer */
    color: white;
    padding: 20px 30px;
    text-align: center;
}

footer a {
    color: #fdcb6e; /* Yellow links */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .social-icons {
    margin: 10px 0;
}

footer .social-icons img {
    width: 30px;
    margin: 0 10px;
}
