 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            line-height: 1.6;
            width: 100vw;
            overflow-x: hidden;
        }
        footer#footer.footer.dark-background,
        .footer-top{
            background: #116530 !important;
        }
        .top-bar {
            background-color: #116530;
            color: white;
            padding: 8px 0;
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            z-index: 1001;
        }
        .top-bar > div {
            padding: 0 40px;
        }
        .social-icons {
            display: flex;
            gap: 30px;
        }
        .social-icons a {
            color: white;
            font-size: 16px;
            transition: opacity 0.2s;
        }
        .social-icons a:hover {
            opacity: 0.8;
        }
        .main-nav {
            background-color: white;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: visible;
            padding-top: 0px;
            padding-bottom: 0px;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            z-index: 1002;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            position: relative;
            max-width: 100%;
            padding: 0 40px;
            z-index: 1002;
        }
        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
            flex: 1;
            justify-content: flex-start;
            padding-top: 15px !important;
        }
        .nav-menu > li {
            position: static;
        }
        .nav-menu > li > a {
            text-decoration: none;
            color: #000000;
            font-size: 16px;
            font-weight: 600;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.2s;
            cursor: pointer;
        }
        .nav-menu > li > a:hover {
            color: #000000;
        }
        .chevron {
            font-size: 12px;
            margin-top: 2px;
        }
        .right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            justify-content: flex-end;
        }
        .right-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .lang {
            display: flex;
            align-items: center;
            gap: 5px;
            position: relative;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }
        .lang:hover {
            background-color: #f5f5f5;
        }
        .lang svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        .lang svg path {
            fill: #116530;
        }
        .wpml-ls {
            position: relative;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .wpml-ls-legacy-dropdown ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .wpml-ls-legacy-dropdown > ul > li {
            position: relative;
        }
        .wpml-ls-item-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            color: #000000;
            font-weight: 600;
            font-size: 15px;
            padding: 0;
            background: transparent;
            border: none;
            cursor: pointer;
        }
        .wpml-ls-item-toggle::after {
            content: "▼";
            font-size: 10px;
            margin-left: 2px;
            margin-top: 2px;
            transition: transform 0.2s;
            color: #999;
        }
        .wpml-ls-item-toggle:hover::after {
            transform: rotate(180deg);
        }
        .wpml-ls-native {
            font-weight: 600;
            white-space: nowrap;
        }
        .wpml-ls-sub-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: white;
            min-width: 120px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 2000;
            padding: 10px 0;
            margin-top: 8px;
        }
        .wpml-ls-legacy-dropdown > ul > li:hover .wpml-ls-sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .wpml-ls-sub-menu li {
            padding: 0;
        }
        .wpml-ls-link {
            display: block;
            padding: 8px 15px;
            text-decoration: none;
            color: #000000;
            transition: background-color 0.2s;
            white-space: nowrap;
        }
        .wpml-ls-link:hover {
            background-color: #f5f5f5;
            color: #000000;
        }
        .search {
            display: flex;
            align-items: center;
            position: relative;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }
        .search:hover {
            background-color: #f5f5f5;
        }
        .search svg {
            width: 22px;
            height: 22px;
            cursor: pointer;
            flex-shrink: 0;
        }
        .search svg path {
            fill: #116530;
        }
        .searchform {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: white;
            padding: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 2000;
            min-width: 250px;
            margin-top: 8px;
        }
        .search:hover .searchform {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .searchform div {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        #s {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            color: #333;
        }
        #s:focus {
            outline: none;
            border-color: #e67e22;
        }
        #searchsubmit {
            background-color: #116530;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        #searchsubmit:hover {
            background-color: #068051;
        }
        .navbar-toggler {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            cursor: pointer;
            padding: 10px;
            background: none;
            border: none;
        }
        .navbar-toggler span {
            display: block;
            height: 2px;
            width: 100%;
            background-color: #116530;
            border-radius: 1px;
            transition: all 0.3s ease;
        }
        .donate {
            margin-left: 5px;
        }
        .donate .btn {
            background-color: #116530;
            color: white;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.2s;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }
        .donate .btn:hover {
            background-color: #116530;
        }
        .donate .btn p {
            margin: 0;
            font-weight: 600;
            font-size: 15px;
        }
        .donate .btn svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
        .donate .btn svg path {
            stroke: white;
        }
        .nav-logo {
            position: absolute;
            left: 55%;
            top: -30px;
            transform: translateX(-50%);
            z-index: 1001;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .logo-img {
            height: 120px;
            width: auto;
            display: block;
            transition: transform 0.3s ease;
            z-index: 1001;
        }
        .mega-menu-wrapper {
            position: absolute;
            top: 70px;
            left: 0;
            width: 100vw;
            z-index: 1000;
            pointer-events: none;
            background: transparent;
        }
        .mega-menu {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%) translateY(15px);
            background-color: #f1f0f0;
            width: 100vw;
            max-width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            padding: 70px 40px 30px 40px;
            margin-top: 0;
            display: grid;
            grid-template-columns: repeat(4, 250px);
            gap: 40px;
            justify-content: center;
            height: auto;
            min-height: 450px;
            overflow-y: auto;
            box-sizing: border-box;
            pointer-events: auto;
        }
        .mega-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .mega-menu-column {
            padding: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            width: 250px;
            flex-shrink: 0;
        }
        .mega-menu-column h3 {
            color: #000000;
            font-size: 16px !important;
            font-weight: 700 !important;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #31383376 !important;
            min-height: 40px;
            white-space: nowrap;
            padding-top: 0;
            margin-top: 0;
        }
        .mega-menu-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex-grow: 1;
            width: 100%;
        }
        .mega-menu-links a {
            text-decoration: none;
            color: #555;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s;
            display: block;
            padding: 8px 0;
           position: relative;
    padding-left: 20px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }
       .mega-menu-links a:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #000000;
    margin-right: 8px; 
    transition: transform 0.2s;
}

        .mega-menu-links a:hover {
            color: #04a768;
            transform: translateX(5px);
        }
        .mega-menu-links a:hover:before {
            color: #04a768;
            transform: translateX(3px);
        }
        .nav-left {
            flex: 1;
            display: flex;
            justify-content: flex-start;
        }
        .nav-center {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
        }
        .logo-container {
            height: 50px !important;
            display: flex;
            align-items: center;
            padding: 5px;
        }
        .logo-container:hover .logo-width {
            filter: grayscale(0%) brightness(100%);
        }
        .logo-width {
            width: auto;
            height: 100%;
            filter: grayscale(100%) brightness(0%);
            transition: filter 0.3s ease, transform 0.3s ease;
            cursor: pointer;
        }
        .logo-width:hover {
            filter: grayscale(0%) brightness(100%);
            transform: scale(1.05);
        }
        .mega-menu-full-width {
            grid-column: 1 / -1;
            width: 100%;
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #0a2e1a 0%, #1a5332 100%);
            color: white;
            padding: 20px 30px;
            border-radius: 8px;
            box-sizing: border-box;
            flex-wrap: nowrap;
            white-space: nowrap;
        }
        .donation-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            gap: 20px;
        }
        .donation-text {
            flex: 1;
            min-width: 0;
        }
        .donation-text h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #fff !important;
        }
        .donation-text p {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .donation-button {
            flex-shrink: 0;
        }
        .donation-button .btn {
            background-color: #07774c;
            color: white;
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: background-color 0.3s;
            white-space: nowrap;
            border: none;
            cursor: pointer;
            display: inline-block;
        }
        .donation-button .btn:hover {
            background-color: #07774c;
        }
        .nav-item-has-megamenu {
            position: relative;
        }
        .nav-item-has-megamenu.active > a {
            color: #07774c;
        }
        .tablet-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: white;
            z-index: 9999;
            padding-top: 80px;
            overflow-y: auto;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        .tablet-menu.active {
            transform: translateX(0);
        }
        .tablet-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            background-color: #0a2e1a;
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10000;
            height: 80px;
        }
        .tablet-menu-title {
            font-size: 24px;
            font-weight: 700;
        }
        .tablet-menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .tablet-menu-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .tablet-menu-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .tablet-menu-section h3 {
              color: #000000;
            font-size: 20px;
            font-weight: 700;
            padding-bottom: 10px;
            border-bottom: 2px solid #0a2e1a;
        }
        .tablet-menu-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .tablet-menu-links a {
            text-decoration: none;
            color: #555;
            font-size: 16px;
            font-weight: 500;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            transition: color 0.2s;
            display: flex;
            align-items: center;
        }
        .tablet-menu-links a:before {
            content: "→";
            margin-right: 10px;
            color: #0a2e1a;
        }
        .tablet-menu-links a:hover {
            color: #07774c;
        }
        .tablet-donation {
            background: linear-gradient(135deg, #0a2e1a 0%, #1a5332 100%);
            color: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            margin-top: 20px;
        }
        .tablet-donation h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .tablet-donation p {
            margin-bottom: 20px;
            opacity: 0.9;
        }
        .tablet-donation-btn {
            background-color: #07774c;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        .tablet-donation-btn:hover {
            background-color: #066b44;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: white;
            z-index: 9999;
            padding-top: 0;
            overflow-y: auto;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }
        .mobile-menu-header {
            display: flex;
            padding: 15px 20px;
            background-color: #0a2e1a;
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10000;
            height: 70px;
            justify-content: space-between !important;
        }
        .mobile-menu-close {
            position: absolute;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 25px;
            cursor: pointer;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mobile-menu-content {
            padding: 80px 20px 20px 20px !important;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 0;
        }
        .mobile-menu-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-menu-section h3 {
            color: #000000;
            font-size: 18px;
            font-weight: 700;
            padding-bottom: 8px;
            border-bottom: 2px solid #0a2e1a;
        }
        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .mobile-menu-links a {
            text-decoration: none;
            color: #555;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            transition: color 0.2s;
            display: flex;
            align-items: center;
        }
        .mobile-menu-links a:before {
            content: "→";
            margin-right: 8px;
            color: #0a2e1a;
        }
        .mobile-menu-links a:hover {
            color: #07774c;
        }
        .mobile-donation {
            background: linear-gradient(135deg, #0a2e1a 0%, #1a5332 100%);
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-top: 20px;
        }
        .mobile-donation h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #fff !important;
        }
        .mobile-donation p {
            margin-bottom: 15px;
            opacity: 0.9;
            font-size: 14px;
        }
        .mobile-donation-btn {
            background-color: #07774c;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        .mobile-donation-btn:hover {
            background-color: #066b44;
        }
        .tablet-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            margin-right: 15px;
        }
        .tablet-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #0a2e1a;
            margin: 5px 0;
            border-radius: 2px;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            margin-right: 10px;
        }
        .mobile-menu-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background-color: #0a2e1a;
            margin: 4px 0;
            border-radius: 2px;
        }
        .mobile-dropdown {
            width: 100%;
            margin-bottom: 5px;
        }
        .mobile-dropdown-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            color: #0a2e1a;
            font-weight: 600;
            font-size: 16px;
            height: auto;
            min-height: auto;
            line-height: 1.2;
        }
        .mobile-dropdown-header span {
            font-size: 12px;
            color: #999;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-header.active span {
            transform: rotate(180deg);
            color: #999;
        }
        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background-color: #f9f9f9;
            border-radius: 4px;
            margin-top: 5px;
        }
        .mobile-dropdown-content.active {
            max-height: 2000px;
            padding: 15px;
        }
        .mobile-category-title {
            color: #0a2e1a;
            font-size: 14px;
            font-weight: 700;
            margin-top: 15px;
            margin-bottom: 10px;
            padding-bottom: 5px;
            border-bottom: 1px solid #ddd;
        }
        .mobile-category-title:first-child {
            margin-top: 0;
        }
        .mobile-category-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 15px;
        }
        .mobile-category-links a {
            text-decoration: none;
            color: #555;
            font-size: 13px;
            padding: 6px 0;
            padding-left: 10px;
            position: relative;
        }
        .mobile-category-links a:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #0a2e1a;
            font-size: 10px;
            top: 6px;
        }
        .mobile-menu-section-full {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 10px;
        }
        .mobile-footer-icons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .mobile-social-icons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 10px;
        }
        .mobile-social-icons a {
            color: #0a2e1a;
            font-size: 22px;
            transition: color 0.2s;
        }
        .mobile-social-icons a:hover {
            color: #07774c;
        }
        .mobile-utils {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-lang {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #0a2e1a;
            padding: 10px 15px;
            border-radius: 4px;
            background-color: #f5f5f5;
            text-decoration: none;
        }
        .mobile-search {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #0a2e1a;
            padding: 10px 15px;
            border-radius: 4px;
            background-color: #f5f5f5;
            text-decoration: none;
        }
        @media (min-width: 768px) and (max-width: 992px) {
            .tablet-menu-toggle {
                display: block !important;
            }
            .mobile-menu-toggle {
                display: none !important;
            }
            .nav-menu {
                display: none;
            }
            .nav-logo {
                left: 40px;
                top: -20px;
                transform: translateX(0);
            }
            .logo-img {
                height: 80px;
            }
            .tablet-menu {
                display: block;
            }
            .mega-menu-wrapper {
                display: none;
            }
            .tablet-menu-content {
                padding-bottom: 120px;
            }
        }
        @media (max-width: 767px) {
            .top-bar {
                display: none;
            }
            .mobile-menu-toggle {
                display: block !important;
            }
            .tablet-menu-toggle {
                display: none !important;
            }
            .nav-menu {
                display: none;
            }
            .nav-logo {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .mega-menu-wrapper {
                display: none;
            }
            .mobile-menu-header {
                justify-content: center;
            }
            .mobile-menu-header img {
                height: 50px;
                width: auto;
                display: block;
            }
            .nav-container {
                padding: 0 20px;
                height: 70px;
            }
            .right-group {
                gap: 8px;
            }
            .lang svg {
                width: 16px;
                height: 16px;
            }
            .search svg {
                width: 18px;
                height: 18px;
            }
            .donate .btn {
                padding: 8px 16px;
                font-size: 14px;
            }
        }


        
        .featured-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.featured-article {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.featured-article:hover {
    transform: translateY(-2px);
}

.featured-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.featured-text {
    padding: 15px;
}

.featured-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.4;
}

.featured-text h4 a {
    color: #116530;
    text-decoration: none;
    transition: color 0.2s;
}

.featured-text h4 a:hover {
    color: #04a768;
}

