body {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px 10%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 150px;
}

.horizontal-menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.horizontal-menu ul li {
    font-size: 16px;
    font-weight: bold;
}

.horizontal-menu ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.horizontal-menu ul li a:hover {
    background-color: #f1f1f1;
}

.phone-number p {
    font-size: 18px;
    color: black;
    font-weight: bold;
}

section {
    padding: 40px 10%;
}

.section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.section:nth-of-type(1),
.section:nth-of-type(3) {
    background-color: #f0f0f0;
    padding: 40px 10%;
    border-radius: 8px;
}

.block {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.block h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: black;
    font-weight: bold;
    text-align: center;
}

.block p {
    font-size: 16px;
    color: black;
    margin-bottom: 15px;
}

.check-prices-button {
    display: inline-block;
    background-color: #ff8c00;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.check-prices-button:hover {
    background-color: #e67e00;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: white;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: black;
}

footer a {
    color: black;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .horizontal-menu ul {
        flex-wrap: wrap;
    }

    .section {
        grid-template-columns: 1fr;
    }

    .block {
        padding: 15px;
    }
}


/* Ensure header stays responsive */
header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation menu adjustments */
.horizontal-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.horizontal-menu ul li a {
    text-decoration: none;
    color: #8B0000; /* Dark red wine */
    font-weight: bold;
    font-size: 16px;
}

/* Adjustments for mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        max-width: 120px;
    }

    .horizontal-menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .phone-number {
        text-align: center;
        margin-top: 10px;
    }
}

/* Adjustments for very small devices */
@media (max-width: 480px) {
    .horizontal-menu ul li a {
        font-size: 14px;
    }

    .phone-number p {
        font-size: 14px;
    }
}


