body {
    font-family: Arial, sans-serif;
    animation: fade-in 1s ease-in, slide-up 1.5s ease-in;
    margin: 0;
    padding: 0;
    color: white;
    background-image: url('https://i.postimg.cc/0yZsTQcy/matteblack.png');
    background-size: cover;
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 35px;
}

.rcadya-text {
    font-family: 'Goldman', sans-serif;
    font-weight: 400; /* Regular weight */
    font-size: 1.2em;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
}

.content strong {
    font-size: 17px;
}

.section {
    margin-bottom: 50px;
}

.step {
    margin-bottom: 40px;
    border: 2px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: scale(1.05);
}

.number {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    margin-right: 20px;
}

.content {
    padding: 20px;
    color: black;
    margin-top: 0;
}

.content p {
    line-height: 1.5;
}

.cta {
    text-align: center;
    margin-top: 50px;
}

.cta a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.cta a:hover {
    background-color: #555;
}
