
.guidelines-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: -5px 5px 0px rgb(255, 208, 132);
    margin-top: 2rem;
}

.guidelines-header {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.guidelines-section {
    margin-bottom: 2rem;
}

.guidelines-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #555;
}

.guidelines-section p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.guidelines-section ul {
    padding-left: 1.5rem;
}

.guidelines-section li {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight {
    font-weight: bold;
    color: #ff69b4;
}

/* General Styling */

.guidelines-container {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.guidelines-header {
    font-size: 3.5rem;
    color: #ac62e1;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
}

.guidelines-section {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 5px solid #ffbdb7;
    background-color: #fef5f4;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guidelines-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(255, 111, 97, 0.2);
}

.guidelines-section h2 {
    font-size: 2rem;
    color: #ffbeb8;
    margin-bottom: 15px;
    animation: fadeInLeft 1s ease-in-out;
}

.guidelines-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    animation: fadeInRight 1s ease-in-out;
}

.guidelines-section ul {
    list-style-type: none;
    padding-left: 0;
}

.guidelines-section ul li {
    padding: 10px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 50px;
    animation: fadeInUp 1s ease-in-out;
}

.guidelines-section ul li::before {
    content: "⋆˚꩜｡";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: hwb(5 68% 0%);
    font-size: 1.2rem;
}

.highlight {
    color: #692c72;
    font-weight: bold;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.guidelines-section ul li:hover {
    color: hwb(355 74% 0%);
    transform: translateX(10px);
    transition: all 0.3s ease;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.guidelines-header {
    animation: float 3s ease-in-out infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.guidelines-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.guidelines-section.visible {
    opacity: 1;
    transform: translateY(0);
}