/* Basic Reset & Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #1051ab; /* Your new, vibrant blue */
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #1051ab 3px solid; /* Using the same new blue for a strong line */
    text-align: center;
}

/* Styling for the main logo image in the header */
.header-main-logo {
    max-width: 350px; /* Adjust this size to make your logo look good */
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
    padding-top: 20px;
}

/* If you uncommented the slogan <p> tag in HTML, this styles it */
header p {
    font-size: 1.2em;
    font-style: italic;
    opacity: 0.9;
    margin-top: 0;
    padding-bottom: 20px;
}

/* Hero Section */
.hero {
    background-color: #e0f2f7; /* Light blue/aqua background for a fresh feel */
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-image {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-text {
    max-width: 600px;
    text-align: left;
}

.hero-text h2 {
    color: #1051ab; /* Your new, vibrant blue */
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* Products Section */
.products {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.products h2 {
    color: #1051ab; /* Your new, vibrant blue */
    margin-bottom: 30px;
    font-size: 2em;
}

.product-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: inline-block;
    width: 45%;
    margin: 0 2%;
    vertical-align: top;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-item h3 {
    color: #1051ab; /* Your new, vibrant blue */
    margin-top: 0;
    font-size: 1.5em;
}

.product-item p {
    font-size: 1em;
    color: #555;
}

.product-item .price {
    font-weight: bold;
    color: #28a745; /* Standard green for pricing */
    margin-top: 15px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f0f8ff; /* Very light blue for testimonial background */
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #ddd;
}

.testimonials h2 {
    color: #1051ab; /* Your new, vibrant blue */
    margin-bottom: 30px;
    font-size: 2em;
}

.testimonial-item {
    background: #fff;
    border: 1px solid #eee;
    border-left: 5px solid #1051ab; /* Accent color matching your new blue */
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.testimonial-item p {
    font-style: italic;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background: #fff;
    text-align: center;
    border-top: 1px solid #ddd;
}

.contact h2 {
    color: #1051ab; /* Your new, vibrant blue */
    margin-bottom: 30px;
    font-size: 2em;
}

.contact p {
    margin-bottom: 10px;
}

.social-links a {
    color: #1051ab; /* Your new, vibrant blue */
    text-decoration: none;
    font-size: 1.1em;
    margin-top: 20px;
    display: inline-block;
}

.social-links a:hover {
    text-decoration: underline;
}

.social-links i {
    margin-right: 8px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Standard WhatsApp green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 0;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .header-main-logo {
        max-width: 250px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        margin-top: 20px;
    }

    .product-item {
        width: 90%;
        margin: 0 auto 20px auto;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}