body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
   /* background: #f0f2f5;*/
   background: #5271ff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/*.num-text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    flex-direction: column;
    flex-direction: row;
    align-items: start;
}*/

/*#num {
    width: 50px; 
    height: 50px;
    border-radius: 50%; 
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #5271ff;
    
}*/

#num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* This will create a circular border */
    border: 1px solid #666;
    color: #5271ff;
    font-size: 20px; /* Adjust as needed */
    margin-right: 10px; /* Adds some space between the number and the title */
    margin-right: 15px;
}

.num-text {
    display: flex;
    align-items: center; /* This will vertically align the number and title */
    gap: 10px; /* This is the space between the number and the title */
    justify-content: space-between;
}

.card h2 {
    color: #5271ff;
    margin: 0; /* Remove bottom margin if not needed */
}




header h1 {
    color: #fff;
    text-align: center;
    margin: 40px;
}

header p {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    width: calc(33.333% - 15px);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Lisage see rida */

}

.card h2 {
    color: #5271ff;
    margin-bottom: 10px;
    align-items: flex-end;
}

.card p {
    color: #666;
    text-align: center;
    flex: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

button {
    background-color: #5271ff;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #fff;
}

button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .cards {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }
}

.footer-content {
    text-align: center;
    color: white;
  }
