* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffff;
}

.main-wrapper {
    width: 95%;
    max-width: 95%;
    margin: 20px auto;
    background: none;
    border-radius: 25px;
    overflow: visible;
    color: #fff;
}

.navbar {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #166647;
    border-radius: 48px;
    height: auto;
    min-height: 138px;
    z-index: 100;
}

.navbar-header {
    display: flex;
    align-items: center;
}

.navbar .logo {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 7px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 137px;
    height: 64px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}

.navbar .logo img {
    display: block;
    height: 45px;
    width: 93px;
    max-width: 100%;
}

.navbar .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.navbar .logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 12px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    max-width: 850px;
    height: 64px;
    gap: 8px;
    position: static;
    left: auto;
    transform: none;
    overflow: visible;
    flex-grow: 1;
    margin: 0 20px;
    z-index: 100;
}

.nav-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.nav-wrapper::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: center;
    flex-grow: 1;
    transition: all 0.4s ease-in-out;
}

.nav-links .mobile-btn {
    display: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 16px 8px;
    border-radius: 20px;
    opacity: 0.7;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: auto;
    min-width: 90px;
    height: 40px;
    flex-shrink: 0;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    opacity: 1;
    width: auto;
    min-width: 90px;
    height: 40px;
    padding: 16px 8px;
}

.nav-btn {
    background: #1C7F56;
    color: white;
    height: 64px;
    width: 271px;
    flex-shrink: 0;
    padding: 0 68px 0 24px;
    border-radius: 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    gap: 8px;
}

.nav-btn .arrow-icon {
    background: white;
    color: #1C7F56;
    width: 56px;
    height: 56px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn:hover {
    background: #166c41;
}

.hamburger-menu {
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 5px;
    z-index: 1000;
    display: none;
    align-self: center;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .navbar {
        padding: 15px 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .navbar .logo {
        margin-right: 5px;
        width: 110px;
        padding: 5px 10px;
    }

    .navbar .logo img {
        width: 70px;
        height: auto;
    }

    .nav-wrapper {
        margin: 0 5px;
        padding: 8px;
        gap: 0;
        max-width: none;
        flex-grow: 1;
        width: auto;
        justify-content: center;
    }

    .nav-links {
        gap: 5px;
        width: 100%;
        justify-content: space-evenly;
    }

    .nav-links a,
    .nav-links a.active {
        font-size: 13px;
        min-width: auto;
        padding: 10px 10px;
        height: 35px;
    }
}

@media (max-width: 1024px) {
    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        gap: 0;
        padding: 15px 20px;
        min-height: auto;
    }

    .nav-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links .mobile-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        opacity: 0.7;
        height: 50px;
        width: 100%;
        padding: 0 8px;
        border-radius: 20px;
        text-decoration: none;
        position: relative;
        font-weight: normal;
    }

    .nav-links .mobile-btn:hover {
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar .logo {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .desktop-only {
        display: none;
    }

    .nav-wrapper::before,
    .nav-wrapper::after {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: static;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 5px;
        z-index: 1001;
        margin-top: 0;
        margin-bottom: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        transition: all 0.4s ease-in-out;
    }

    .nav-links.open {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        padding: 12px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .nav-links a {
        flex-grow: 1;
        justify-content: center;
        gap: 10px;
        min-width: unset;
        width: 100%;
    }

    .nav-links a.active {
        width: 100%;
        height: 50px;
        font-size: 16px;
        padding: 10px 8px;
        text-align: center;
        margin-bottom: 5px;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

.dropdown-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 102, 71, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 10px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.3s ease;
    text-align: center;
    font-size: 15px;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
    .dropdown-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
        padding: 0;
        min-width: 100%;
        display: none;
    }

    .dropdown-container:hover .dropdown-menu {
        display: flex;
        transform: none;
    }

    .dropdown-menu a {
        font-size: 14px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
    }
}


.news-section {
    width: 90%; 
    height: auto;
    margin: 100px auto;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    background: #E5FAEA;
    color: #1C7F56;
    padding: 12px 24px;
    border-radius: 32px;
    font-size: 16px;
    margin: 0 auto 20px auto;
    width: auto;
    height: auto;
    font-family: 'Poppins', sans-serif;
}

.section-label::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #1C7F56;
    border-radius: 50%;
    margin-right: 10px;
}

.service-title {
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
    font-family: 'Poppins', sans-serif;
}

.message-news {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin: 0 auto 50px auto;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

/* --- Filter Bar Area (Centered and Full Width) --- */

.filter-bar {
    max-width: 90%;
    width: 1300px;
    margin: 0 auto 40px auto;
    background: #E5FAEA;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    height: auto;
    min-height: 96px;
    flex-wrap: wrap;
}

.filter-item.search {
    background: white;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    flex: 1;
    height: 56px;
    min-width: 200px;
}

.filter-item.search input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #777;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.filter-item.search i {
    color: #1C7F56;
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.filter-btn {
    background: white;
    border: none;
    padding: 12px 30px;
    border-radius: 24px;
    color: #1C7F56;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
    width: auto;
    min-width: 112px;
    height: 56px;
    flex-shrink: 0;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1C7F56;
    color: white;
}

/* --- Main Content Area (News Cards) --- */

.main-content-wrap {
    width: 90%; 
    max-width: 1300px; 
    padding: 0 20px;
    margin: 50px auto 100px auto; 
}

.news-list-area {
    width: 100%;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 0;
}

.news-card {
    background: white;
    border-radius: 12px; 
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 15px; 
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.news-card img {
    width: 100%;
    height: 180px; 
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.news-content {
    padding: 15px 5px 0 5px; 
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #777;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
}

.tag {
    background: #1C7F56; 
    color: white; 
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #1C7F56; 
    width: auto;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.date {
    padding: 4px 0;
    display: flex;
    align-items: center;
    font-size: 12px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.news-title {
    font-size: 1.15em;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.4;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.news-desc {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
    font-family: 'Poppins', sans-serif;
}

.read-more {
    font-weight: 500;
    text-decoration: none;
    color: #1C7F56;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95em;
    margin-top: auto;
    align-self: flex-start;
    font-family: 'Poppins', sans-serif;
}

.read-more:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
}

.page-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #1C7F56;
    border: 1px solid rgba(28, 127, 86, 0.2);
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.page-btn i {
    font-size: 16px;
}

.page-btn.active {
    background: #1C7F56;
    color: white;
    border-color: #1C7F56;
}

.page-btn:hover {
    background: rgba(28, 127, 86, 0.1);
}

.page-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 768px) {
    .pagination {
        gap: 8px;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .page-btn {
        width: 45px;
        height: 45px;
        font-size: 15px;
    }

    .page-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 6px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .page-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .page-btn i {
        font-size: 12px;
    }
}

.upcoming-events-section {
    background-color: #1C7F56;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 5%; 
    color: white;
    margin-top: 50px; 
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 56px;
}

.events-heading {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0; 
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.events-horizontal-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    overflow-x: unset; 
    padding: 0; 
    padding-bottom: 20px; 
    scrollbar-width: auto; 
}
.events-horizontal-list::-webkit-scrollbar {
    display: none; 
}

.event-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    flex-shrink: unset; 
    width: auto; 
    max-width: unset; 
    min-width: unset; 
    height: 168px; 
    display: flex;
    align-items: stretch;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    gap: 10px;
}

.event-image-container {
    flex-shrink: 0;
    width: 140px; 
    height: 168px;
    border-radius: 16px 0 0 16px;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: 20px;
    padding-right: 15px;
}

.event-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 10px 0;
    text-align: left;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.event-date-time {
    font-size: 14px;
    margin: 0 0 5px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'Poppins', sans-serif;
}

.event-date-time span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.event-date-time span:nth-child(1):before {
    content: '📅';
    font-size: 16px;
}

.event-date-time span:nth-child(2):before {
    content: '⏰';
    font-size: 16px;
}

.learn-more {
    color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    text-align: left;
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
}

.learn-more:hover {
    text-decoration: underline;
}

@media (max-width: 1250px) {
    .event-item {
        width: auto; 
    }
}

@media (max-width: 992px) {
    .events-horizontal-list {
        grid-template-columns: repeat(2, 1fr); 
    }
    .news-cards {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .upcoming-events-section{
      border-radius: 0;
    }
    .events-horizontal-list {
        grid-template-columns: 1fr;
    }
    
    .service-title {
        font-size: 38px;
    }

    .filter-bar {
        max-width: 95%; 
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        border-radius: 30px;
    }

    .filter-item.search,
    .filter-btn {
        width: 100%;
        min-width: unset;
        height: 50px;
    }

    .news-cards {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .upcoming-events-section,
    .main-content-wrap {
        width: 100%;
        padding: 0 15px; 
    }

    .events-heading {
        margin-left: 0;
        padding: 20px;
    }
}

.closing-section {
  width: 90%;
  max-width: 90%;
  padding: 60px 0;
  box-sizing: border-box;
  margin: 0 auto;
}

.cta-box {
  font-family: 'Poppins', sans-serif; 
  color: white;
  text-align: center;
  padding: 60px 40px;
  border-radius: 48px;
  margin-bottom: 60px;
  height: auto;
  min-height: 459px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: 
    linear-gradient(40deg, 
      rgba(0, 0, 0, 0) 0%,           
      rgba(20, 102, 82, 0.58) 50%,  
      #297B68 100%),               
    url('/graphics/ctaCover.png'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

.cta-box h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 24px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0px 0px rgba(255, 255, 255, 0);
  padding: 12px 32px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  width: auto; 
  min-width: 200px; 
  height: 64px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap; 
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-logo-img {
  width: 198px;
  height: 96px;
  display: block;
  margin-bottom: 6px;
}

.logo-placeholder {
  width: 80px;
  height: 50px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 6px;
}

.footer-small {
  font-size: 12px;
  opacity: 0.7;
}

.footer-tagline {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.7;
  margin-right: 20px;
  text-align: right;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .contact-wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 48px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form {
    min-height: auto;
  }

  .info-block h3 {
    font-size: 28px;
  }

  .info-block p {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .cta-box h2 {
    font-size: 38px;
  }

  .cta-box p {
    font-size: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    font-family: poppins;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    font-family: poppins;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .footer-tagline {
    font-size: 18px;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .contact-section {
    padding: 40px 0;
  }
  
  .contact-form {
    padding: 20px;
  }

  .form-group {
    margin-bottom: 30px;
  }

  .cta-box h2 {
    font-size: 32px;
  }

  .cta-box {
    padding: 40px 20px;
    margin-bottom: 40px;
    min-height: 350px;
  }
}

.footer-section {
  width: 100%;
  background: white;
  padding: 60px 0;
  box-sizing: border-box;
}

.footer-divider {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-divider.bottom-line {
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  gap: 40px;
  padding: 40px 0;
}

.footer-column {
  flex-grow: 1;
  min-width: 150px;
  max-width: 250px;
}

.footer-column:last-child {
  flex-grow: 2;
  min-width: 250px;
  max-width: 400px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 20px;
}

.footer-column ul li a {
  font-size: 20px;
  opacity: 0.4;
  text-decoration: none;
  color: inherit;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-item span {
  margin-right: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1C7F56;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 32px;
  flex-shrink: 0;
}

.social-icon:hover {
  opacity: 1;
}

.map-container {
  width: 100%; 
  height: 224px;
  overflow: hidden;
}

.footer-bottom {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  opacity: 0.4;
  padding-top: 16px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-column,
    .footer-column:last-child {
        max-width: 100%;
        min-width: 100%;
        text-align: center;
    }

    .footer-column ul {
        width: fit-content;
        margin: 0 auto;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-column ul li a {
        font-size: 18px;
    }

    .social-links {
      justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0;
    }
    
    .footer-divider.bottom-line {
        margin-top: 40px;
    }

    .social-links {
      justify-content: center;
    }
}