body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;

    background-image: url("\wp13353089.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    text-align: center;
}

/* Header */
.header {
    background-image: 
        linear-gradient(rgba(124,77,255,0.8), rgba(179,136,255,0.8));

    background-size: cover;
    background-position: center;

    color: white;
    padding: 40px 20px;
    border-radius: 20px;
    width: 85%;
    margin: 30px auto;
}


/* Title */
.title {
    margin: 40px 0 20px;
    color: #4a148c;
}

/* Cards */
.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 260px;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    color: #6a1b9a;
    margin-bottom: 10px;
}

.card p {
    color: #555;
}

/* Button */
button {
    margin-top: 15px;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    background: #b388ff;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #7c4dff;
}

/* Footer */
footer {
    margin: 50px 0 20px;
    color: #777;
    font-size: 14px;
}
