body {
    margin: 0;
    padding: 0;
    font-family: 'merriweatherregular';
    background-color: #fdfdfd;
    color: #2a2a2a;
}

.info-section {
    padding: 4rem 2rem;
}

.info-container {
    max-width: 950px;
    margin: 0 auto;
}

.info-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    font-weight: bold;
}



.info-highlight {
    background-color: #fff4cc;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
}

.info-blockquote {
    font-style: italic;
    background-color: #f4f1fa;
    border-left: 5px solid #9b59b6;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
}

.info-keyword {
    font-weight: bold;
    color: #5e35b1;
}

.info-symbol {
    color: #d84315;
    font-weight: bold;
}

.info-closing {
    text-align: center;
    margin-top: 3rem;
    background: linear-gradient(to right, #fff8dc, #fcefee);
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a2a2a;
}


.info-rewrite {
    display: inline-block;
    font-style: italic;
    color: #502f4c;
    font-weight: 500;
    text-shadow: 0 0 4px rgba(80, 47, 76, 0.2);
}

.info-cta {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #4b2e83;
    /* tiefes, einprägsames Violett */
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    animation: pulse-cta 2.5s ease-in-out infinite;
}

@keyframes pulse-cta {
    0% {
        text-shadow: 0 0 0px rgba(75, 46, 131, 0.3);
    }

    50% {
        text-shadow: 0 0 8px rgba(75, 46, 131, 0.5);
    }

    100% {
        text-shadow: 0 0 0px rgba(75, 46, 131, 0.3);
    }
}


@media (max-width: 768px) {
    .info-title {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.05rem;
    }

    .info-closing {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    @media (max-width: 768px) {
        .info-container {
            text-align: center;
            /* Zentriert alle Texte innerhalb des Containers */
        }

        .info-title {
            font-size: 2.2rem;
            text-align: center;
            /* Überschrift zentrieren */
        }

        p {
            font-size: 1.05rem;
            text-align: center;
            /* Paragraphen zentrieren */
        }

        .info-closing {
            font-size: 1.1rem;
            text-align: center;
            /* Abschluss-Text zentrieren */
        }

        /* Falls du weitere Überschriften hast, kannst du sie hier mit aufnehmen */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            text-align: center;
        }
    }

}