html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Archivo', Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

h1 {
    color: #1A0C53;
    font-size: 3em;
    font-weight: bold;
}
h2, h3, h4, h5, h6 {
    color: #000000;
}
h2 {
    font-size: 1em;
    font-weight: normal;
}
h3 {
    font-size: 1.5em;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px gray;
    padding: 10px;
    background-color: white;
}
nav a, a {
    color: #1A0C53;
    font-size: 0.8em;
}
nav a:hover {
    color: #000000;
}

#hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    min-height: 720px;
    overflow-y: auto;
}

.column {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#email {
    padding: 10px;
    border: 2px solid #1A0C53;
    border-radius: 5px;
    font-size: 1em;
    margin-bottom: 10px;
}

#subscribeButton {
    padding: 10px 20px;
    background-color: #1A0C53;
    color: white;
    border: none;
    border-radius: 5px; 
    font-size: 1em;
    cursor: pointer; 
    transition: background-color 0.3s;
    margin-bottom: 25px;
}

#subscribeButton:hover {
    background-color: #0f0835; 
}

footer {
    background-color: #1A0C53;
    color: white;
    text-align: left;
    padding: 10px;
    font-size: 0.8em;
    font-weight: normal;
}

#cookieConsentBar {
    /* Adjust the styles as needed */
    color: #333;
    border-top: 1px solid #ccc;
}

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

    nav, footer {
        text-align: center;
    }
}

.rtl {
    direction: rtl;
}

.rtl nav, .rtl footer {
    text-align: right;
}

.rtl #hero {
    flex-direction: row-reverse;
}