* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    max-width: 100%;
    overflow-wrap: break-word;
}

:root {
    --primary-color: #538023;
    --secondary-color: #FFFFFF;
    --text-color: #444446;
    --background-color: #EEEEEE;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: var(--primary-color);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    height: 40px;
}

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

/* Navigation styles */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 3px;
}

nav a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease-in-out;
}

nav a:hover::after {
    width: 100%;
}

/* Main content styles */
main {
    padding: 2rem 1rem;
    margin-top: 80px;
}

/* Container */
.container {
    background-color: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Content centering */
.content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

/* Typography */
.container h1 {
    color: var(--text-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.container h2 {
    color: var(--text-color);
    font-size: 2rem;
    text-align: left;
    margin: 2rem 0 1rem 0;
}

.container p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.container ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.container li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.container li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Products grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.image-url {
    border: 1px solid var(--background-color);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    max-width: 350px;
    margin: 0 auto;
}

.image-url:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.image-url h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.image-url p {
    color: var(--secondary-color);
    line-height: 1.5;
}

.image-url img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

/* Slideshow styles */
.slideshow-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    object-fit: contain;
}

.slide.active {
    opacity: 1;
}

.slide-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.slide-dots {
    text-align: center;
    margin-top: 1rem;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: var(--background-color);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Mirror showcase styles */
.image-box {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    max-width: 350px;
    margin: 0 auto;
}

.image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-box img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.image-box h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.image-box p {
    color: var(--text-color);
    line-height: 1.4;
}

/* Comparison table styles */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: #f8f8f8;
}

/* Back to overview link */
.back-to-overview {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 2rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--secondary-color);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

.back-to-overview:before {
    content: "←";
    margin-right: 0.7rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.back-to-overview:hover {
    background-color: #f8f8f8;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
    color: var(--text-color);
    text-decoration: none;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-company p {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Mobile navigation styles */
.burger-menu {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Language switcher */
.language-switch a {
    padding: 5px 10px;
    border: 1px solid var(--background-color);
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9em;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
    }

    .logo {
        height: 30px;
    }

    nav {
        position: fixed;
        right: 0;
        top: 0;
        background-color: var(--primary-color);
        width: 100%;
        height: 100vh;
        padding: 5rem 1rem 1rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .burger-menu {
        display: block;
        z-index: 1000;
    }

    .burger-menu.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active div:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .container {
        padding: 1.5rem;
    }

    .container h1 {
        font-size: 2rem;
    }

    .container h2 {
        font-size: 1.6rem;
    }

    .comparison-table {
        margin: 1rem -1rem;
        width: calc(100% + 2rem);
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    nav a {
        font-size: 0.9rem;
    }

    .container {
        padding: 1rem;
    }

    .container h1 {
        font-size: 1.8rem;
    }

    .container h2 {
        font-size: 1.4rem;
    }

    .container p {
        font-size: 1rem;
    }

    .image-url .service-icon {
        font-size: 6rem;
        height: 180px;
    }

    .language-switch {
        margin: 10px 0;
    }
}

/* Print styles */
@media print {
    body {
        color: black;
    }
    
    .container {
        box-shadow: none;
    }

    footer {
        background-color: white;
    }
    
    .footer-content p,
    .footer-links a {
        color: black;
    }
}

/* Add general link styles */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact button styles */
.contact-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 2px solid var(--primary-color);
    margin: 2rem auto;
    width: fit-content;
}

.contact-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(83, 128, 35, 0.3);
}

.contact-button-container {
    text-align: center;
    margin: 3rem 0;
} 