body {
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Set background color to white */
    color: #121212; /* Set text color to black */
    font-family: Arial, sans-serif;
}

.landing {
    padding: 50px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 75%; /* Set maximum width to 100% of the container */
    max-height: 25%;
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px;
    opacity: 0; /* Set initial opacity to 0 */
    animation: fadeIn 5s ease forwards; /* Apply fade-in animation */
}

@keyframes fadeIn {
    from {
        opacity: 0; /* Start with opacity 0 */
    }
    to {
        opacity: 1; /* End with opacity 1 */
    }
}

.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #0056b3;
}

.programme-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.programme-btn:hover {
    background-color: #0056b3;
}

.container {
    max-width: 80%; /* Adjust max-width for responsiveness */
    margin: 50px auto;
    padding: 20px;
    background-color: #72B4B8;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

h1 {
        text-align: center;
        color: #000000;
    }

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="tel"],
input[type="areas_of_interest"]{
    width: calc(50% - 10px); /* Set width to half of the container width */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #000000;
}

textarea {
    width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #000000;
}

textarea {
    height: 120px;
}

button[type="submit"] {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

@media only screen and (max-width: 768px) {
    .container {
        max-width: 90%; /* Adjust max-width for smaller screens */
    }
}

.success { color: green; }
.error { color: red; }