body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #6556e9;
    color: white;
}  
h1 {
    text-align: left;
    margin-top: 50px;
}
p {
    text-align: left;
    font-size: 18px;
    margin-top: 20px;
}
header img {
    display: block;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
    position: relative;
}
.nav-links {
    display: flex;
    gap: 0;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}
nav a:hover {
    text-decoration: underline;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: background-color 0.2s;
}
@media (max-width: 600px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #6556e9;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 0 0 8px 8px;
        padding: 10px 0;
        z-index: 100;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        margin: 0;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
}   
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #333;
    color: white;
}
.div-card {
    background-color: #fff;
    color: #333;
    padding: 20px;
    margin: 20px;
    border: 2px solid #4a3fbf;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
.div-top {
    background-color: rgba(51, 51, 51, 0.3);
    flex: 1;
    color: white;
    padding: 20px;
    text-align: justify;
}
.div-bottom {
    background-color: rgba(133, 196, 238, 0.3);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.green {
    background-color: rgb(56,138, 83);
    color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.element {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-form label {
    font-weight: bold;
    margin-bottom: 2px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #4a3fbf;
    border-radius: 6px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
.contact-form textarea {
    resize: vertical;
}