        body {

    background: black;

    color: white;

    font-family: Arial, sans-serif;

}

h1 {

    color: gold;

    text-align: center;

}

.container {

    width: 80%;

    margin: 40px auto;

    background: #222;

    padding: 30px;

    border: 2px solid gold;

    border-radius: 15px;

}

.button {

    display: block;

    margin: 15px 0;

    padding: 15px;

    text-align: center;

    text-decoration: none;

    background: gold;

    color: black;

    font-weight: bold;

    border-radius: 10px;

}

.button:hover {

    background: #ffd700;

}

/* Footer */

.site-footer {

    width: 80%;

    margin: 40px auto 0;

    background: #222;

    border: 2px solid gold;

    border-radius: 15px;

    padding: 30px;

    box-sizing: border-box;

}

.footer-container {

    display: flex;

    flex-wrap: wrap;

    justify-content: space-between;

    gap: 30px;

}

.footer-section {

    flex: 1 1 260px;

    text-align: center;

}

.footer-heading {

    color: gold;

    font-size: 20px;

    margin-bottom: 10px;

}

.footer-section p {

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 15px;

}

.footer-button {

    display: inline-block;

    padding: 12px 20px;

}

.footer-section a {

    color: gold;

}

.footer-section a.button {

    color: black;

}

.footer-section a:hover {

    color: #ffd700;

}

.footer-newsletter-form {

    text-align: left;

}

.footer-bottom {

    text-align: center;

    margin-top: 30px;

    padding-top: 15px;

    border-top: 1px solid #444;

    font-size: 12px;

    color: #ccc;

}

@media (max-width: 900px) {

    .footer-container {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }

    .footer-section {

        width: 100%;

    }

}

@media (max-width: 480px) {

    .site-footer {

        width: 90%;

        padding: 20px;

    }

}

/* Kit product card */

.kit-card {

    background: #1a1a1a;

    border: 2px solid gold;

    border-radius: 15px;

    padding: 25px;

    margin: 30px 0;

    text-align: center;

}

.kit-cover {

    max-width: 300px;

    width: 100%;

    height: auto;

    border-radius: 10px;

    border: 2px solid gold;

    margin: 0 auto 20px;

    display: block;

}

.kit-title {

    color: gold;

    font-size: 24px;

    margin-bottom: 10px;

}

.kit-price {

    color: gold;

    font-size: 22px;

    font-weight: bold;

    margin: 15px 0;

}

.vat-note {

    font-size: 12px;

    color: #aaaaaa;

    max-width: 500px;

    margin: 0 auto 12px;

}

.kit-description {

    text-align: left;

    max-width: 600px;

    margin: 0 auto 20px;

    line-height: 1.6;

}

.kit-audio-preview {

    margin: 20px auto;

    max-width: 500px;

}

.kit-audio-preview audio {

    width: 100%;

}

.kit-buy-button {

    display: inline-block;

    margin-top: 10px;

}

.kit-category-heading {

    color: gold;

    text-align: center;

    border-bottom: 2px solid gold;

    padding-bottom: 10px;

    margin-top: 50px;

    margin-bottom: 20px;

}

.kit-category-heading:first-of-type {

    margin-top: 20px;

}

.cta-button {

    display: block;

    max-width: 320px;

    margin: 35px auto 15px;

    padding: 20px;

    font-size: 20px;

    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);

}

.page-hero-image {

    display: block;

    width: 100%;

    height: auto;

    border-radius: 15px;

    border: 2px solid gold;

    margin-bottom: 25px;

}

/* Site navigation */

.site-nav {

    background: #111;

    border-bottom: 2px solid gold;

    padding: 12px 0;

}

.site-nav ul {

    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 8px 20px;

}

.site-nav li {

    margin: 0;

}

.site-nav a {

    color: gold;

    text-decoration: none;

    font-weight: bold;

    font-size: 15px;

    padding: 6px 4px;

}

.site-nav a:hover,

.site-nav a:focus {

    text-decoration: underline;

    color: #ffd700;

}

.site-nav a[aria-current="page"] {

    border-bottom: 2px solid gold;

}

@media (max-width: 600px) {

    .site-nav ul {

        gap: 10px 14px;

        padding: 0 10px;

    }

    .site-nav a {

        font-size: 14px;

    }

}

.skip-link {

    position: absolute;

    left: -9999px;

    top: 0;

    background: gold;

    color: black;

    font-weight: bold;

    padding: 12px 20px;

    z-index: 1000;

    border-radius: 0 0 8px 0;

    text-decoration: none;

}

.skip-link:focus {

    left: 0;

}