* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
    padding: 20px;
}

/* Header Section */
header {
    background: #0074B7;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.logo {
  width:100px;
  length:100px;
}

header h1 {
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

/* About Us Section */
#about {
    padding: 40px 0;
}

#about h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

#about p {
    font-size: 1em;
    margin-bottom: 10px;
}

/* Products Section */
#products {
    background: #f4f4f4;
    padding: 40px 0;
}

#products h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

#products ul {
    list-style-type: none;
    font-size: 1em;
}

#products ul li {
    margin-bottom: 10px;
}

/* Contact Section */
#contact {
    padding: 40px 0;
}

#contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

#contact a {
    color: #0074B7;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer p {
    font-size: 0.9em;
}
