* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #004c75;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    width: 100%;

}

.boxes {
    display: flex;
    flex-direction: row;
    border-radius: 12px;
    padding: 5px;

}

.box {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 30px;
    margin: 2px;
    text-align: center;
    max-width: 500px;
    background: white;
}

.persian {
        direction: rtl;
    }

h1 {
    font-size: 2.5rem;
    color: #ff4d4d;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.container img {
    width: 200px;
    height: 200px;
}

footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 0.9rem;
    }

    .icon img {
        width: 80px;
        height: 80px;
    }
    .boxes {
        flex-direction: column;
    }
    .container {
        padding-top:400px;
    }
}
