body {
    font-family: 'Arial', sans-serif;
    background-image: url('media/hatterkep.png');
    background-size: cover;
    margin: 0;
    padding: 0;
    color: white;
    font-size: 100%;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: #000;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
    left: 0;
    z-index: 1000;
}

/* High Contrast Mode */
#highContrastToggle {
    position: fixed;
    left: 10px;
    bottom: 10px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#highContrastToggle:hover {
    background-color: #555;
    opacity: 1;
}

.high-contrast {
    background-color: #000;
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.high-contrast a {
    color: #ffff00;
}

.high-contrast a:hover {
    color: #ff9900;
}

.high-contrast button {
    background-color: #ffcc00;
    color: #000;
    border: 1px solid #000;
}

.high-contrast button:hover {
    background-color: #ff9900;
}

/* Navigation Menu */
nav {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #f4c542;
}

nav ul li a.active {
    color: #f4c542;
    font-weight: bold;
    border-bottom: 2px solid #f4c542;
    padding-bottom: 2px;
}

/* Container and Content */
.container {
    background-color: rgba(50, 50, 50, 0.8);
    width: 60%;
    margin: 3% auto;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.centered-header {
    text-align: center;
}

.header-text {
    text-align: left;
    margin-bottom: 1.5em;
}

.header-text h1 {
    font-size: 2em;
    font-family: 'Georgia', serif;
}

.header-text p {
    font-size: 1.2em;
}

.header-text ul.product-list {
    list-style-type: disc;
    padding-left: 0;
    margin-left: 40px;
    font-size: 1.1em;
}

.product-table {
    margin-top: 2em;
}

.product-table h2 {
    text-align: center;
    font-size: 1.5em;
    font-family: 'Georgia', serif;
}

.product-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.product-table th,
.product-table td {
    padding: 0.8em;
    border: 1px solid #ddd;
    text-align: left;
}

.product-table th {
    background-color: #333;
    color: white;
}

.product-table td {
    background-color: #444;
}

.product-image {
    width: 100px;
    height: auto;
    border-radius: 10px;
}

.product-table td p {
    margin: 0.5em 0;
}

/* Footer */
.footer {
    text-align: justify;
    margin-top: 2em;
    font-size: 1.1em;
}

/* Links */
a {
    color: #1e90ff;
    text-decoration: underline;
    font-size: 1em;
}

a:visited {
    color: #7a7a7a;
    text-decoration: underline;
}

/* Back Button */
.back-button {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #f4f4f4;
    color: black;
    border: none;
    padding: 0.8em 1.5em;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
}

/* Print Styles */
@media print {
    body {
        background: none !important;
        color: black;
        font-size: 12pt;
    }

    nav,
    header,
    aside,
    .sidebar,
    .menu,
    video,
    .back-button {
        display: none !important;
    }

    .container {
        width: 100%;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .product-image {
        width: 80px;
        height: auto;
    }

    .product-table table {
        border: 1px solid black;
    }

    .product-table th,
    .product-table td {
        background: none;
        color: black;
        border: 1px solid black;
        padding: 0.5em;
    }

    .content p {
        font-size: 11pt;
        line-height: 1.5;
    }
}
