/* Reset default styling */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Arial', sans-serif;
}

/* General styles */
body {
    line-height: 1.6;
    color: #333;
}

header.navbar {
    background: #0056b3;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

header .logo h1 {
    font-size: 1.8rem;
    margin: 0;
}

header .logo span {
    color: #ffcc00;
}

header nav ul {
    display: flex;
    gap: 1.5rem;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ffcc00;
}

/* Hero section */
.hero {
    background: url('https://via.placeholder.com/1920x600') no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content span {
    color: #ffcc00;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content .cta-button {
    background: #ffcc00;
    color: #0056b3;
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero-content .cta-button:hover {
    background: #e6b800;
}

/* Products section */
.products {
    padding: 2rem;
    text-align: center;
    background: #f4f4f4;
}

.products h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    background: white;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    width: 250px;
}

.product-card img {
    max-width: 100%;
    border-radius: 5px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.product-card button {
    background: #0056b3;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.product-card button:hover {
    background: #003f82;
}

/* About section */
.about {
    padding: 2rem;
    text-align: center;
    background: white;
}

.about p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Contact section */
.contact {
    padding: 2rem;
    text-align: center;
    background: #f4f4f4;
}

.contact ul {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.contact ul li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #0056b3;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}