* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
}

.logo img {
    width: 30px;
    margin-right: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #f5f5f5;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    border-radius: 4px;
    z-index: 1;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

.nav-item:hover .dropdown-content {
    display: block;
  }

.donate-btn {
    background-color: #3d9970;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.donate-btn:hover {
    background-color: #2d8a60 !important;
    transform: translateY(-2px);
}
.contact-btn:hover {
    background-color: #2d8a60 !important;
    transform: translateY(-2px);
}

.menu-bar {
    display: none;
}
.container-main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}
.word {
    max-width: 800px;
    text-align: center;
    font-size: 1.2em;
}
.container-main video {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.conservation-section {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    padding: 20px;
    gap: 20px;
    margin: 0 20px;
}
.conservation-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    height: 230px;
}
.description {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}
.button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}
.contact-btn {
    background-color: #3d9970;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0 20px;
}
footer {
    background-color: #111827;
    color: #e5e7eb;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    margin-right: 40px;
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 20px;
    margin-right: 8px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #3d9970;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info div {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-info span {
    margin-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    background-color: #374151;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #3d9970;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    font-size: 0.9rem;
    color: #9ca3af;
}



@media (max-width: 576px) {
    .nav-links {
      display: none;
    }
    .nav-links.active {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .menu-bar{
      display: block;
      cursor: pointer;
    }
}
@media (max-width: 768px) {
    .footer-column {
      flex: 0 0 100%;
    }
  }

@media (max-width: 992px) {
    .footer-content {
        flex-wrap: wrap;
      }
  
      .footer-column {
        flex: 0 0 50%;
        margin-bottom: 30px;
      }
      .conservation-section {
        flex-direction: column;
      }
  }