* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    color: #fff;
}
header {
    background: rgba(25, 121, 201, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    z-index: 1000;
}
.menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
.menu ul li {
    margin: 0 20px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}
.menu ul li a:hover {
    color: #181502; 
}
.content {
    background: url('EN.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px; 
}

.container {
    max-width: 700px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
}
h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

p {
    font-size: 20px;
    line-height: 1.6;
}
.shop-section {
    background: #f4f4f4;
    padding: 50px 0;
    color: #333;
}

.shop-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.shop-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.product-category {
    margin-bottom: 50px;
}

.product-category h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product {
    text-align: center;
    margin: 10px;
    width: 200px;
}

.product p {
    font-size: 18px;
    color: #333;
}