body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #f9f9f9;
    color: #333;
}

header {
    background: #003049;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.products, .contact-form {
    padding: 40px;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

input, textarea, button {
    margin: 10px 0;
    padding: 12px;
    font-size: 16px;
}

button {
    background: #CFE2FA;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background: #eee;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.success {
    color: green;
    font-weight: bold;
    margin-top: 20px;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

header img {
    height: 60px;
    margin-right: 20px;
}

header h1 {
    margin: 0;
    font-size: 24px;
    flex-grow: 1;
    text-align: left;
}
nav a i {
    margin-right: 8px;
}
.carousel-section {
    text-align: center;
    margin: 40px 0;
}

.carousel {
    position: relative;
    width: 80%;
    max-width: 1920px;
    height: 1080px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
    z-index: 1;
}
