body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.sect {
    width: 80%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    flex-wrap: wrap; /* Ensures flex items wrap to the next line on smaller screens */
}

.contact-form, .social-media-links {
    width: 45%; /* Adjusted width for better spacing */
    max-width: 1140px;
}

@media (max-width: 768px) { /* Adjust the breakpoint as needed */
    .contact-form, .social-media-links {
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 20px; /* Add spacing between the sections */
    }
}

.contact-form h2, .social-media-links h2 {
    color: #000;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin: 10px 0 5px;
    color: #000;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #32CD32;
    outline: none;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px;
    background-color: #32CD32;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 140px;
}

.contact-form button:hover {
    background-color: #28a745;
}

.social-media-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
}
.contact-info i {
    color: limegreen;
    margin-right: 10px;
}
.contact-info div {
    margin: 10px 0;
}

.social-media-links a {
    color: #fff;
    background-color: #32CD32;
    padding: 15px;
    margin: 5px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
}

.social-media-links a:hover {
    background-color: #28a745;
}

/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
  }
  
  /* Add a hover effect if you want */
  .fa:hover {
    opacity: 0.7;
  }
  
  /* Set a specific color for each brand */
  
  /* Facebook */
  .fa-facebook {
    background: #3B5998;
    color: white;
  }
  
  /* Twitter */
  .fa-twitter {
    background: #55ACEE;
    color: white;
  }

  .row {
    display: flex;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    color: #000;
    width: 100%;
  }
  
  .column {
    flex: 50%;
  }


.registration-section {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
}

.registration-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.registration-form h2 {
    color: #000; /* Lime Green */
    text-align: center;
}

.registration-form form {
    display: flex;
    flex-direction: column;
}

.registration-form label {
    margin: 10px 0 5px;
    color: #000;
}

.registration-form input, .registration-form select, .registration-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.registration-form input:focus, .registration-form select:focus, .registration-form textarea:focus {
    border-color: #32CD32;
    outline: none;
}

.registration-form button {
    margin-top: 20px;
    padding: 10px;
    background-color: #32CD32;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 200px;
}

.registration-form button:hover {
    background-color: #28a745;
}

main {
    padding: 20px;
}

p, li {
    text-align: justify;
}

h1, h2, h4 {
    font-weight: normal;
}

.content {
    margin: 0 auto;
    width: 100%;
}

.text-image-block {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-image-block.reverse {
    flex-direction: row-reverse;
}

.text-image-block .text {
    flex: 1;
    padding: 20px;
}

.text-image-block .image {
    flex: 1;
}

.text-image-block .image img {
    max-width: 100%;
    border-radius: 10px;
}

footer {
    background-color: #32CD32;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .text-image-block {
        flex-direction: column;
        text-align: center;
    }

    .text-image-block.reverse {
        flex-direction: column;
    }

    .text-image-block .text,
    .text-image-block .image {
        flex: none;
        width: 100%;
        padding: 10px 0;
    }
}