<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: auto;


}
.container a {
    color: #ff8000; /* Barva odkazu */
    text-decoration: none;

}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(69, 69, 69);
    color: #fff;
    padding: 20px;

}

.logo {
    flex: 0 0 auto; /* Logo bude mĂ­t pevnou velikost */
    margin-left: 10%;
}

.logo img {
    width: 200px;
}

.intro-text {
    flex-grow: 1; /* Zabere zbĂ˝vajĂ­cĂ­ prostor */
    display: flex;
    justify-content: flex-end; /* ZarovnĂˇ text ĂşplnÄ› doprava */
    text-align: right;
    margin-right: 10%;

}

.intro-text h1 {
    font-size: 24px;
    margin: 0;
}



.product-image {
    background-color: rgb(235, 236, 237); /* Match the About Us section color */
    padding: 0; /* Remove padding to eliminate gap */
    text-align: center; /* Centers the image */
    width: 100vw; /* Full viewport width */
    position: relative; /* For positioning */
    left: 50%; /* Shift left to center */
    margin-left: -50vw; /* Pull left to align with edges */
}

.product-image img {
    max-width: 960px; /* Sets maximum width to 600 pixels */
    width: 100%; /* Allows the image to scale down to fit the container */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Prevents bottom margin */
    margin: 0 auto; /* Centers the image */
}

.product-section h2,
.product-section p {
    text-align: center; /* Centers the text */
}

.product-section {
    padding: 20px 0; /* Add padding for the product section */
}

h2 {
    margin: 20px 0;
}

.products {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    flex-wrap: wrap;
    gap: 0.5cm; /* Corrected gap between items */
}

.product {
    margin: 5px;
    text-align: center;
}

.product img {
    width: 300px; /* Velikost produktovĂ˝ch obrĂˇzkĹŻ */
    height: auto;
}

#about-us {
    text-align: center; /* Centers the title */
    background-color: rgb(235, 236, 237); /* SpecifikovanĂˇ barva pozadĂ­ */
    padding: 20px 0;
}

.about-title {
    margin-bottom: 20px; /* Space below the title */
}

.about-text {
    max-width: 960px; /* Limits the width of the text block */
    margin: 0 auto; /* Centers the text block */
    text-align: left; /* Aligns the text to the left */
}

.about-text p {
    margin-bottom: 10px; /* Space between paragraphs */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
}

.about-logo {
    width: 120px; /* Set a fixed width for the logos */
    height: auto; /* Maintain aspect ratio */
    margin-left: 10px; /* Space between text and logo */
    padding-right: 10px;
}
.about-text a {
    color: rgb(227, 113, 25); /* Barva odkazu */
    text-decoration: none;
}
footer {
    background: rgb(69, 69, 69); /* Match the background color */
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
#contact-info {
    background:rgb(69, 69, 69);
    padding: 20px;

}

.contact-details {
    display: flex;
    max-width: 960px;
    margin: auto;
    justify-content: space-between;
    align-items: flex-start; /* ZarovnĂˇ prvky k hornĂ­mu okraji */
    color: white;
}

.contact-image, .contact-person, .head-office {
    width: 30%; /* KaĹľdĂˇ sekce zabĂ­rĂˇ 30% ĹˇĂ­Ĺ™ky */
    text-align: center; /* ZarovnĂˇnĂ­ textu na stĹ™ed */
}

.contact-image img {
    width: 100%; /* ObrĂˇzek zabĂ­rĂˇ celou ĹˇĂ­Ĺ™ku sekce */
    height: auto;
    margin-right: 80px;
    max-width: 200px; /* MaximĂˇlnĂ­ ĹˇĂ­Ĺ™ka obrĂˇzku */
    border-radius: 10px; /* ZaoblenĂ© rohy obrĂˇzku */

}

.contact-person, .head-office {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ZarovnĂˇ text uvnitĹ™ */
    width: 30%;
    text-align: left;
    min-height: 120px; /* ZajistĂ­ stejnou vĂ˝Ĺˇku */
}


.contact-person h2, .head-office h2 {
    color: rgb(227, 113, 25); /* Barva nadpisĹŻ */
    margin-bottom: 10px;
}

.contact-person p, .head-office p {
    margin-bottom: 5px;
}

.contact-person a {
    color: rgb(227, 113, 25); /* Barva odkazu */
    text-decoration: none;
    word-break: break-all;



}
.head-office {

}

.contact-person a:hover {
    text-decoration: underline; /* PodtrĹľenĂ­ pĹ™i najetĂ­ myĹˇĂ­ */
}
</pre></body></html>