* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--main-font);
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    /* border-bottom: 1px solid #e5e5e5; */
}

.header-top {
    position: relative;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.date {
    position: absolute;
    left: 0;
    font-size: 1.10rem;
    color: #1a1a1a;
    bottom: 0;
}

.date a {
    color: #1a1a1a;
    text-decoration: none;
}

.logo-center {
    /* display: flex; */
    flex-direction: column;
    align-items: center;
}

.logo-image {
    height: 158px;
    object-fit: contain;
}

.logo-text {
    height: 5rem;
    object-fit: contain;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.social-icons {
    position: absolute; 
    right: 0;
    display: flex;
    gap: 0.75rem;
    bottom: 0;
}

.social-icons img {
    width: 1.75rem;
    height: 1.75rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.social-icons img:hover {
    opacity: 0.7;
}

.language-bar {
    padding-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.language-bar strong {
    font-weight: 700;
}

.divider {
    border-top: 1px solid #d1d5db;
    margin: 0.5rem 0;
}


/* Navigation Structure */
.navigation {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
}

.nav-item {
    position: relative;
}

/* Parent Links */
.nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Arrow */
.nav-arrow {
    position: relative;
    width: 10px;
    height: 10px;
}

.nav-arrow::after {
    border-bottom: 2px solid #8F99A3;
    border-right: 2px solid #8F99A3;
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
}

/* Dropdown (initially hidden) */
.dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 180px;
    display: none;
    flex-direction: column;
    z-index: 99999;
    right: inherit;
    width: 200px;
    margin: auto;
    border-radius: 5px;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown {
    display: flex;
}

/* Child links */
.dropdown-link {
    padding: 10px 14px;
    color: #1a1a1a;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    border-radius: 5px;
}

.dropdown-link:hover {
    background: #ab8b08;
    color: #fff;
}

.nav-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    margin-right: 0.5rem;
}

.nav-link:hover {
    color: #ab8b08;
}


/* .navigation {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    
}

.nav-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    margin-right: 0.5rem;
}

.nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ab8b08;
} */




.footer {
	position: relative;
	z-index: 3;
	margin-top: 20px;
	padding: 0;
	color: #fff;
	background-color: #101010;
	border-top: 1px solid #fff;
}

.footer-col {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px 24px 12px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.footer-row-top {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	font-size: 16px;
	font-weight: 400;
}

.footer-text {
	text-align: center;
	margin: 0;
}

.footer-text a {
	color: #fff;
	text-decoration: none;
}

.footer-line {
	width: 1px;
	height: 14px;
	background: #fff;
}

.footer-text-copyright {
	opacity: 0.75;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	margin-top: 10px;
}
a
{
    color: #1a1a1a;
    text-decoration: none;;
}


