/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #777171;
}

.brand-logo img {
    width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.nav-links li a:hover {
    color: #00bfa5;
}

/* Header Section */
.header {
    text-align: center;
    background-color: #00bfa5;
    padding: 100px 0;
    color: white;
}

.header h1 {
    font-size: 48px;
}

.header p {
    font-size: 20px;
    margin: 20px 0;
}

.btn-primary {
    background-color: #fff;
    color: #00bfa5;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: #f4f4f4;
}

/* About Section */
.about-section {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.about-section h2 {
    font-size: 36px;
    color: #00bfa5;
}

.about-section p {
    font-size: 18px;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 50px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.map-section h2 {
    font-size: 36px;
    color: #00bfa5;
}

.map-container {
    margin: 20px 0;
}

/* Contact Section */
.contact-section {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    color: #00bfa5;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    font-size: 18px;
    margin: 10px 0;
}

.contact-info i {
    color: #00bfa5;
    margin-right: 10px;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
/*form*/
h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

form input[type="radio"] {
    width: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    padding: 10px;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

button {
    background-color: #296237;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    width: 100%;
}

button:hover {
    background-color: #418851;
}

h3 {
    margin-bottom: 10px;
    text-align: center;
}
.about-section {
    padding: 40px;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    margin-right: 20px;
}

.about-text p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
}

.about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
