body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #f1c40f;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #000;
    color: #f1c40f;
}
header .logo {
    height: 50px;
}
nav button {
    margin-left: 10px;
    padding: 5px 10px;
    cursor: pointer;
    background-color: #333;
    color: #f1c40f;
    border: none;
}
.hero {
    text-align: center;
    padding: 50px 20px;
    background: url('../images/factory_bg.jpg') no-repeat center center;
    background-size: cover;
}
.hero h1 {
    color: #f1c40f;
    font-size: 2.5em;
    text-shadow: 2px 2px 5px black;
}
.products {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}
.product img {
    width: 200px;
    border: 2px solid #f1c40f;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #f1c40f;
}
footer .map {
    margin-top: 15px;
}/* --- ????????? ??????: ???????? ? ??????? --- */
@media screen and (max-width: 768px) {
    .products {
        display: flex;
        flex-direction: column;  /* ?????? ??????????? */
        align-items: center;     /* ?? ?????? */
    }
    .products .product {
        width: 100%;             /* ?? ??? ?????? */
        max-width: 100%;         /* ??????????? ??? */
        margin-bottom: 20px;     /* ?????? ????? ??????? */
    }
    .products .product img {
        width: 100%;             /* ???????? ??????? ?? ?????? */
        height: auto;            /* ????????? ????????? */
    }
}
@media screen and (max-width: 768px) {
    .products {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .products .product {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .products .product img {
        width: 100%;
        height: auto;
    }
}
