body {
    width: 100%;
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(238, 238, 238);
    flex-direction: column;
}

html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.popup-18 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }
  
  .popup-18-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  
  .popup-18-box h2 {
    margin-bottom: 15px;
  }
  
  .popup-18-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .popup-18-buttons button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .popup-yes {
    background-color: #4CAF50;
    color: white;
  }
  
  .popup-no {
    background-color: #f44336;
    color: white;
  }
  
  .popup-yes:hover {
    background-color: #45a049;
  }
  
  .popup-no:hover {
    background-color: #d32f2f;
  }

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2b2b2b;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-family: sans-serif;
  }

  #cookie-banner p {
    margin: 0;
    max-width: 70%;
  }

  .cookie-buttons {
    display: flex;
    gap: 10px;
  }

  .cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
  }

  .accept-btn {
    background-color: #4caf50;
    color: white;
  }

  .decline-btn {
    background-color: #f44336;
    color: white;
  }

.header {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #45a049;
}

.header-container {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.header-logo {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0px 2px 4px #2b2b2b;
}
  
.header-nav {
    display: flex;
    gap: 50px;
}

.header-nav-link {
    text-decoration: none;
    text-shadow: 0px 2px 4px #2b2b2b;
    color: #ffffff;
    transition: transform 0.5s ease;
}

.header-nav-link:hover {
    transform: scale(1.05);
    background-color: #6df374;
    padding: 5px;
    border-radius: 20px;
}

.body {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
    align-items: center;
    justify-content: center;
}

.body-container h1 {
    font-size: 50px;
    color: gold;
    text-shadow: 0px 1px 2px #2b2b2b;
    font-weight: 600;
}

.body-container h2 {
    font-size: 30px;
    color: gold;
    text-shadow: 0px 1px 2px #2b2b2b;
    text-transform: uppercase;
    font-weight: 700;
}

.body-container p {
    font-size: 20px;
}

.body-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100%;
}

.body-links-el {
    width: 90%;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-around;
    background-color: #45a049d8;
    border-radius: 50px;
    padding-bottom: 20px;
    padding-top: 20px;
    box-shadow: 0px 2px 4px #2b2b2b;
    transition: transform 0.5s ease;
}

.body-links-el:hover {
    transform: scale(1.1);
}

.body-links-el-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.body-links-el-left img {
    width: 200px;
    height: auto;
    background-color: #53535398;
    box-shadow: 0px 2px 4px #2b2b2b;
    border-radius: 50px;
}

.body-links-el-left p {
    margin: 0;
    text-shadow: 0px 2px 4px #2b2b2b;
}

.body-links-el-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}

.body-links-el-right p {
    color: gold;
    font-weight: 800;
    text-shadow: 0px 2px 4px #2b2b2b;
    text-transform: uppercase;
    font-size: 25px;
}

.body-links-el-right a {
    padding: 10px 20px;
    background-color: gold;
    border: 1px solid #2b2b2b;
    border-radius: 20px;
    box-shadow: 0px 2px 4px #2b2b2b;
    transition: transform 0.5s ease;
    text-decoration: none;
    text-transform: uppercase;
    color: #2b2b2b;
}

.body-links-el-right a:hover {
    transform: scale(1.1)
}

.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #2b2b2b;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
}

.footer-container {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.footer-container p {
    color: #ffffff;
}

.footer-top {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #FFFFFF;
    padding-bottom: 30px;
}

.footer-top img {
    width: 200px;
    height: auto;

}

.footer-bot {
    margin-top: 30px;
    display: flex;
    width: 100%;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 20px;

}

.footer-links-el {
    color: #FFFFFF;
    text-decoration: none;
    transition: transform 0.5s ease;
}

.footer-links-el:hover {
    padding: 10px;
    background-color: #FFFFFF;
    color: #2b2b2b;
    box-shadow: 0px 2px 4px #2b2b2b;
    border-radius: 20px;
}

.footer a{
    text-decoration: none;
}

.footer img {
    transition: transform 0.5s ease;
}

.footer img:hover {
    transform: scale(1.1)
}

.body-second {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.body-second-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
}

.body-second-container h1 {
    font-size: 50px;
    color: gold;
    text-shadow: 0px 1px 2px #2b2b2b;
    font-weight: 600;
}

.body-second-container p {
    font-size: 20px;
}

.body-second-input {
    width: 100%;
    background-color: #FFFFFF;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 50px;
    box-shadow: 0px 2px 4px #2b2b2b;
}

.body-second-input-container h2 {
    font-size: 30px;
    color: gold;
    text-shadow: 0px 1px 2px #2b2b2b;
    font-weight: 600;
}

.body-second-input-container input {
    width: 50%;
    height: 50px;
    padding: 5px;
    padding-left: 15px;
    border-radius: 50px;
    border: none;
    box-shadow: 0px 2px 4px #2b2b2b;
}

.body-second-input-container textarea {
    width: 50%;
    height: 200px;
    padding: 5px;
    padding-left: 15px;
    border-radius: 20px;
    resize: none;
    border: none;
    box-shadow: 0px 2px 4px #2b2b2b;
}

.body-second-input button {
    width: 50%;
    height: 50px;
    padding: 5px;
    display: flex;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    background-color: gold;
    font-weight: 600;
    transition: background-color 0.5s ease;
    border: none;
    box-shadow: 0px 2px 4px #2b2b2b;
} 

.body-second-input button:hover {
    background-color: rgb(255, 239, 151);
}

.body-second-container-text {
    width: 80%;
}

.h2 {
    background-color: gold;
    font-weight: 600;
    padding: 5px;
}

span {
    color: gold;
    text-shadow: 0px 1px 2px #2b2b2b;
    font-weight: 600;
}

.body-second-container-text a {
    text-decoration: none;
    color: gold;
    text-shadow: 0px 1px 2px #2b2b2b;
    font-weight: 600;
} 

@media (max-width: 1200px) {
    .footer-top img {
        width: 100px;
    }

    .footer-bot img {
        width: 50px;
    }

    p { 
        font-size: 12px !important
    }

    a {
        font-size: 12px !important
    }

    h2 {
        font-size: 15px !important;
    }

    h1 {
        font-size: 25px !important;
        text-align: center;
    }
}