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

.navbar {
    background-color: #2c3e50;
    padding: 10px 0;
    position: relative;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.navbar .brand .logo {
    height: 50px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    margin: 2px 10px; 
}

.navbar .nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 8px 16px;
    transition: background-color 0.3s;
}

.navbar .nav-links a:hover {
    background-color: #34495e;
    border-radius: 4px;
}



@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #2c3e50;

        top: 60px;

        
        left: 0;

    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 100px 0;
    }


}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 500px;
}

.carousel img {
    width: 100%;
    height: auto;
}

.carousel .carousel-item {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item.active {
    display: block;
    position: relative;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 4px;
    text-align: left;
}

.section {
    padding: 60px 20px;
}

.home-section {
    background-color: #f8f9fa;
}

.about-section {
    background-color: #ffffff;
}

.certificates-section {
    background-color: #e9ecef;
}

.products-section {
    background-color: #f8f9fa;
}

.contact-section {
    background-color: #ffffff;
}

.section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.product-table th, .product-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.product-table img {
    max-width: 100px;
}

@media screen and (max-width: 768px) {
    .product-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.location {
    flex: 1 1 calc(33% - 20px);
    margin: 10px;
    text-align: center;
}

.location h3 {
    margin-bottom: 10px;
}

.location p {
    margin-bottom: 20px;
}

iframe {
    width: 100%;
    max-width: 600px;
    height: 300px;
    border: 0;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .locations {
        flex-direction: column;
    }

    .location {
        flex: 1 1 100%;
    }

    iframe {
        height: 250px;
    }
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 5px 0;
}

.footer a, .email {
    color: #ecf0f1;
    text-decoration: none;
}

.heart {
    color: #e74c3c;
}

@media screen and (max-width: 768px) {
    .locations {
        flex-direction: column;
    }

    .location {
        flex: 1 1 100%;
    }

    iframe {
        height: 250px;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-consent p {
    margin: 0;
    padding-right: 10px;
    flex: 1;
}

.cookie-consent a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-consent button {
    background-color: #3498db;
    color: #ecf0f1;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.cookie-consent button:hover {
    background-color: #2980b9;
}

.cookie-buttons {
    display: flex;
    gap: 10px; /* Adjust the spacing between buttons */
}

@media screen and (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent p {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-consent button {
        margin-left: 0;
        margin-bottom: 5px;
        flex: 1;
    }
}

