* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    text-align: center;
    background-color: #222;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    margin-bottom: 10px;
}

.consoles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px;
}

.console {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 300px;
    margin: 10px;
    padding: 20px;
    text-align: center;
}

.console img {
    max-width: 100%;
    height: auto;
}

.buy-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

.buy-button:hover {
    background-color: #0056b3;
}

.buy-button2 {
    display: inline-block;
    background-color: #FF0000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

.buy-button2:hover {
    background-color: #b81414;
}

footer {
    text-align: center;
    background-color: #222;
    color: #fff;
    padding: 10px 0;
    margin-top: 20px;
	
}

footer a {
    color: #fff;  /* Weiße Farbe für die Links */
    text-decoration: none;  /* Keine Unterstreichung */
}

footer a:hover, footer a:visited {
    color: #fff;  /* Weiße Farbe bei Hover und besuchten Links */
    text-decoration: none;  /* Keine Unterstreichung bei Hover und visited */
}

@media (max-width: 768px) {
    .consoles {
        flex-direction: column;
        align-items: center;
    }
}

/* Zusätzlicher Stil für die Vergleichstabelle */
.comparison {
    margin: 20px;
    text-align: center;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.comparison table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.comparison table td {
    background-color: #fff;
}

.comparison table tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .comparison table {
        font-size: 14px;
    }

    .comparison table th, 
    .comparison table td {
        padding: 10px;
    }
}

/* Basis-Stile für Datenschutz und Impressum */
section.datenschutz, section.impressum, section.erklaerungen {
    margin: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

section.datenschutz h2, section.impressum h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

section.datenschutz h3, section.impressum h3 {
    font-size: 20px;
    margin-top: 20px;
}

section.datenschutz p, section.impressum p, 
section.datenschutz ul, section.impressum ul {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

section.datenschutz ul, section.impressum ul {
    margin-left: 20px;
    list-style-type: disc;
}

section.datenschutz a, section.impressum a {
    color: #0066cc;
    text-decoration: none;
}

section.datenschutz a:hover, section.impressum a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    section.datenschutz, section.impressum {
        margin: 10px;
        padding: 15px;
    }

    section.datenschutz h2, section.impressum h2 {
        font-size: 22px;
    }

    section.datenschutz h3, section.impressum h3 {
        font-size: 18px;
    }

    section.datenschutz p, section.impressum p {
        font-size: 14px;
    }
}

/* Stil für die Vergleichstabelle */
section.vergleichstabelle table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

section.vergleichstabelle th, section.vergleichstabelle td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

section.vergleichstabelle th {
    background-color: #f2f2f2;
    color: #333;
}

section.vergleichstabelle td {
    background-color: #ffffff;
    color: #333;
}

/* Responsive Tabelle */
@media (max-width: 768px) {
    section.vergleichstabelle table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Stil für die Erklärungsabschnitte */
section.erklaerungen h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

section.erklaerungen p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;	
}

/* Stil für Links in der Erklärung */
section.erklaerungen a {
    color: #1a73e8;
    text-decoration: none;
}

section.erklaerungen a:hover {
    text-decoration: underline;
}


/* Cookie-Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    z-index: 9999;
}

#cookie-banner p {
    margin: 0;
    padding-right: 20px;
    display: inline-block;
}

#cookie-banner a {
    color: #1a73e8;
    text-decoration: underline;
}

#cookie-banner button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

#cookie-banner button:hover {
    background-color: #155a9e;
}