body, html {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: #006039;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    background-color: #fff;
    box-shadow: 0px 6px 4px rgba(0, 0, 0, 0.25);
}

.header .logo img {
    height: 125px;
}

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

.header .nav ul li {
    display: inline;
    color: #3a1d0a;
}

.header .nav ul li a {
    font-size: 20px;
    font-weight: bold;
    color: #672901;
}

.not-found {
    text-align: center;
    padding: 50px 50px 90px;
}

.not-found h1 {
    font-size: 90px;
    color: #006039;
    margin-bottom: 20px;
}

.not-found .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    margin-top: 20px;
}

.not-found .error-code {
    font-size: 250px;
    color: #006039;
    font-weight: bold;
    margin-left: 75px;
}

.not-found .error-message h2 {
    font-size: 45px;
    margin-bottom: 10px;
    
}

.not-found .error-message p {
    font-size: 20px;
    line-height: 1.5;
}

.not-found .error-message p a{
    font-weight: bold;
}