body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-bottom: 2px solid #ddd;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: #FF6600;
}

.logo p {
    margin: 0;
    font-size: 14px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}

nav ul li a.active {
    color: blue;
    font-weight: bold;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: linear-gradient(to right, #0044CC, #0066FF);
    color: white;
    flex-wrap: wrap;
}

.hero .content {
    max-width: 100%;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    line-height: 1.5;
}

.hero .images {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background-color: #1d2b44;
    color: white;
    flex-wrap: wrap;
}

.product-card {
    background: #007bff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 220px;
}

.product-card img {
    width: 100%;
    border-radius: 5px;
}

.product-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.product-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

.product-card a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.about {
    text-align: center;
    padding: 50px;
    background: white;
    color: black;
}

.about img {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.vision {
    display: flex;
    justify-content: space-around;
    background: #0066FF;
    color: white;
    padding: 50px;
    flex-wrap: wrap;
}

.vision-text, .philosophy-text {
    max-width: 100%;
    text-align: center;
}

.footer {
    background: #1d2b44;
    color: white;
    padding: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero .images {
        flex-direction: column;
    }
    
    .products {
        flex-direction: column;
        align-items: center;
    }
    
    .vision {
        flex-direction: column;
        text-align: center;
    }
}
