/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #003366; /* Dark Blue */
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #00bfff 3px solid; /* Light Blue */
}

header .logo {
    float: left;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 5px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 5px;
}

header nav ul li a:hover {
    background: #00bfff; /* Light Blue */
}

/* Hero Section */
.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    text-align: center;
    padding-top: 100px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #00bfff; /* Light Blue */
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #87ceeb; /* Sky Blue */
}

.hero .cta {
    color: #fff;
    background: #00bfff; /* Light Blue */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
}

.hero .cta:hover {
    background: #00509e; /* Medium Blue */
}

/* Introduction Section */
section {
    padding: 50px 0;
    text-align: center;
}

.introduction p, .features ul, .products .product-list, .testimonials .testimonial, .contact form {
    text-align: left;
}

.introduction {
    background: #e6f7ff; /* Light Blue Background */
    color: #003366; /* Dark Blue Text */
}

.introduction p {
    font-size: 18px;
}

/* Features Section */
.features {
    background: #cceeff; /* Lighter Blue Background */
}

.features h2 {
    color: #003366; /* Dark Blue */
}

.features ul {
    list-style: none;
    padding: 0;
}

.features ul li {
    background: #f4f4f4;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 4px solid #00bfff; /* Light Blue */
}

/* Products Section */
.products {
    background: #e6f7ff; /* Light Blue Background */
}

.products .product-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.products .product-item {
    background: #f4f4f4;
    padding: 20px;
    width: 30%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    background: #cceeff; /* Lighter Blue Background */
}

.testimonials h2 {
    color: #003366; /* Dark Blue */
}

.testimonials .testimonial {
    background: #f4f4f4;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* Contact Section */
.contact {
    background: #e6f7ff; /* Light Blue Background */
}

.contact form label {
    display: block;
    margin-top: 10px;
}

.contact form input, .contact form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact form button {
    padding: 10px 20px;
    border: none;
    background: #00bfff; /* Light Blue */
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.contact form button:hover {
    background: #00509e; /* Medium Blue */
}

/* Footer */
footer {
    background: #003366; /* Dark Blue */
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

footer .social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-media a:hover {
    text-decoration: underline;
}
