* {
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
/* RTL Support */
body {
    direction: rtl;
    text-align: right;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container for Margins */
.container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 2000px; /* Limits content width for better layout on larger screens */
}

/* Make the wrapper a flex container */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Flex-grow content to take up remaining space */
.content {
    flex: 1;
}

/* Footer styling */
footer {
    background-color: #38B2AC;
    color: #fff;
    padding: 20px;
    text-align: center;
    /* Additional styling if needed */
}

footer p {
    margin: 0;
    font-size: 1em;
    direction: rtl;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Adjust footer padding for small screens */
@media (max-width: 768px) {
    footer {
        padding: 15px;
    }
}
