/* Global Styles */
body {
    font-family: "Arial", sans-serif; /* Klare, moderne Schrift */
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Helle Hintergrundfarbe */
    color: #333; /* Dunkelgrauer Text */
}

/* Header Styles */
header {
    background-color: #a52a2a; /* Warmes Rotbraun */
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    border-bottom: 4px solid #8b0000; /* Dunklerer Rand für Abgrenzung */
}

header img {
    max-width: 100px; /* Kleinere Darstellung des Logos */
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2rem;
    margin: 10px 0;
}

header p {
    font-size: 1.2rem;
    margin: 5px 0;
}

/* Navigation Styles */
nav {
    background-color: #8b0000; /* Dunkleres Rotbraun */
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 5px; /* Abgerundete Kanten */
}

nav a:hover {
    background-color: #a52a2a; /* Hellere Hervorhebung */
    color: #fff;
}

/* Section Styles */
section {
    background-color: #fff; /* Weiße Sektionen für Abgrenzung */
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    text-align: center;
}

section h1 {
    color: #a52a2a;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

section p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555; /* Mittelgrauer Text */
}

/* Highlight Styles */
.highlight {
    color: #8b0000; /* Auffälliges Rot */
    font-weight: bold;
}

/* Image Styles */
.small-image {
    max-width: 200px; /* Kleine, einheitliche Bilder */
    height: auto;
    margin: 20px auto;
    display: block;
    border: 2px solid #a52a2a; /* Farbliche Umrandung */
    border-radius: 8px;
}

/* Footer Styles */
footer {
    background-color: #333; /* Dunkler Hintergrund */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 15px;
    }

    nav a {
        margin: 0 10px;
        padding: 8px 10px;
    }
}
/* Layout der Icons nebeneinander */
.icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.icon-item {
    text-align: center;
}

/* Optional: Hinzufügen von Abstand zu den Bildern */
.icon-item i {
    margin-bottom: 10px;
}

.icon-item p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.mystery-packs {
    background-color: #fff; /* Heller Hintergrund */
    color: #333; /* Dunkler Text für Lesbarkeit */
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    font-family: "Arial", sans-serif;
}

.mystery-packs h2 {
    text-align: center;
    color: #a52a2a; /* Passender Farbton */
    margin-bottom: 20px;
}

.mystery-packs h3 {
    color: #8b0000;
    margin-top: 20px;
    margin-bottom: 10px;
}

.mystery-packs p {
    margin-bottom: 15px;
    color: #555;
}

.mystery-packs ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.mystery-packs ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.mystery-packs ul li:before {
    content: "✔"; /* Haken für Punkte */
    color: #8b0000;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.categories li {
    display: inline-block;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px;
    margin-right: 10px;
    font-weight: bold;
}

.cta p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #a52a2a;
    margin-top: 20px;
}

.cta ul {
    text-align: center;
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.cta ul li {
    display: inline;
    background-color: #f1f1f1;
    border-radius: 5px;
    margin: 5px;
    padding: 10px 15px;
    color: #333;
    font-weight: bold;
}

.cta {
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 30px;
}

.cta h3 {
    font-size: 1.8rem;
    color: #a52a2a;
    margin-bottom: 20px;
}

.cta-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 180px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-item p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.cta-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.cta-item:hover .cta-icon {
    filter: grayscale(0%);
}

.cta-description {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}
.cta-item p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px; /* Abstand zwischen Symbol und Text */
}

.icon {
    font-size: 1.5rem;
    color: #a52a2a;
}
<div class="cta-list">
    <div class="cta-item">
        <div class="cta-icon-container">
            <span class="icon">🎄</span>
        </div>
        <p class="cta-text">Weihnachtsaktionen</p>
    </div>
    <div class="cta-item">
        <div class="cta-icon-container">
            <span class="icon">🏢</span>
        </div>
        <p class="cta-text">Firmenfeiern</p>
    </div>
    <div class="cta-item">
        <div class="cta-icon-container">
            <span class="icon">🙏</span>
        </div>
        <p class="cta-text">Kreatives Dankeschön</p>
    </div>
    <div class="cta-item">
        <div class="cta-icon-container">
            <span class="icon">🎁</span>
        </div>
        <p class="cta-text">Geburtstagsgeschenk</p>
    </div>
</div>

