/* styles.css */
body {
    font-family: 'Tajawal', sans-serif;
    text-align: right;
    direction: rtl;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.logo {
    max-width: 50px;
    height: auto;
}

h1 {
    font-size: 2.5em;
    color: #333;
    margin: 0;
}

p {
    font-size: 1.2em;
    color: #666;
    margin: 10px 0 20px;
}

.description {
    margin-bottom: 40px;
}

img {
    max-width: 100%;
    height: auto;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-around;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 300px;
    background-color: #ffffff;
}

.button img {
    max-width: 100px;
    height: auto;
    margin-right: 15px; /* Increased padding between image and text */
}

.button span {
    font-size: 1.1em;
}

.button:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

/* Media Queries for Mobile Responsiveness */
@media (min-width: 600px) {
    .container {
        padding: 40px;
    }

    .links {
        flex-direction: row;
    }
}

@media (max-width: 599px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .button {
        font-size: 1em;
    }
}
