body {
    background-color: #FFFFCC;
}

.hero {
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.section-title {
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.step-card, .media-card {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

#mail {
    margin-top: 1.5rem;
    transition: 0.3s ease;
    background: #FFF;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-card p {
    margin: 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-bottom: 50px;
}

.media-card {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.2s;
}

#mail:hover, .media-card:hover {
    box-shadow: 0 4px 14px rgba(149, 193, 182, 0.5);
}

.media-card:hover {
    cursor: pointer;
}

.media-card img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.media-card span {
    font-weight: 500;
}

.header {
    background: linear-gradient(
        -45deg,
        #003333,
        #004d4d,
        #99cccc,
        #FFFFCC
    );
    background-size: 400% 400%;
    animation: gradientMove 10s ease infinite;
    height: 25rem;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.header-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.60);
    border-radius: 15px;
    width: 90%;
    color: white;
    box-sizing: border-box;
}

@media screen and (max-width: 600px) {
    .header {
        height: 30%;
    }

    .header-title {
        font-size: 30px;
        display: flex;
        text-align: center;
        word-break: break-word;
    }

    .text-header {
        font-size: 20px;
    }
}
