body{
font-family:Arial,Helvetica,sans-serif;
margin:0;
background:#6fa84f;
color:#333;
}

header{
    background:#6fa84f;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
}
.text-box {
    background-color: 6fa84f;
    border: 2px solid white;
    padding: 25px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-align: center;
}
.navbar{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 30px;
}

.logo img{
    height:90px;
    width:auto;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
    margin:0;
    padding:0;
}

.nav-links a{
    text-decoration:none;
    color:#3b2f25;
    font-weight:bold;
    font-size:18px;
    transition:.3s;
}

.nav-links a:hover{
    color:#40916c;
}
nav{
background:#6fa84f;
padding:15px;
text-align:center;
}

nav a{
color:#3b2f25;
text-decoration:none;
margin:20px;
font-weight:bold;
}

.hero{
padding:80px;
text-align:center
}

footer {
    background-color: #70ad4f;
    padding: 40px 20px;
}

.footer-box {
    background-color:#6fa84f;
    border: 2px solid white;
    max-width: 2000px;
    margin: 0 auto;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.footer-info p {
    color: #3b281c;
    font-size: 20px;
    margin: 12px 0;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #3b281c;
    text-decoration: none;
    margin-right: 20px;
    font-size: 20px;

    }
.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #4b2e1e;
    font-weight: bold;
}
@media (max-width: 768px) {

    .nav-links {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        white-space: nowrap;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-links li {
        flex-shrink: 1;
    }
/* ===== CENTER CONTACT PAGE ===== */

.contact-section {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-section > p {
    text-align: center;
    margin-bottom: 35px;
}

.contact-info {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.contact-info h2 {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 10px;
}

.contact-info h3 {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 8px;
}

.contact-info p {
    text-align: center;
    margin-bottom: 20px;
}

/* Prevent the page from moving sideways */
body {
    overflow-x: hidden;
}
