
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #0D99FF;
    background-color: #f9f9f9;
    color: #333;
}


.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.navigation img{
    justify-content: left;
}
.navigation .links{
    justify-content: right;
}
.links a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}
.links a:hover {
    color: #FF9900;
}

.logo {
    width: 100px;
}

.register-button {
    padding: 10px 20px;
    background-color: #ff9900;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}


.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.intro h1 {
    font-size: 2.5em;
    color: #0073e6;
}

.intro p {
    font-size: 1.2em;
    margin-top: 10px;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    padding: 12px 25px;
    margin: 10px;
    background-color: #ff9900;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buttons button:hover {
    background-color: #e68900;
}

.language-image {
    width: 500px;
    max-width: 100%;
    margin-left: 40px;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ff9900;
    color: #fff;
    font-size: 0.9em;
}

.footer-links, .contact, .social-media {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 5px 0;
}

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

.contact p {
    margin: 5px 0;
}

.social-media a {
    display: inline-block;
    margin-right: 10px;
}

.social-media img {
    width: 25px;
    height: 25px;
    /* filter: brightness(0) invert(1); */
}

.about-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-section h1 {
    font-size: 2.5em;
    color: #0073e6;
    margin-bottom: 20px;
}

.about-section img {
    width: 100%;
    max-width: 600px;
    margin: 20px 0;
    border-radius: 10px;
}

.about-section p {
    font-size: 1.2em;
    color: #333;
    line-height: 1.6;
    margin: 15px 0;
}

.about-section .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #ff9900;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.about-section .cta-button:hover {
    background-color: #e68900;
}
.register-button {
    padding: 10px 20px;
    background-color: #ff9900;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}


/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 20px;
    }

    .about-section h1 {
        font-size: 2em;
    }

    .about-section p {
        font-size: 1.1em;
    }
}

