:root {
    --primary-color: #20b4b9;
    --primary-dark: #158e92;
    --primary-light: #a8e6e8;
    --accent-color: #138588;
    --text-primary: #333;
    --text-secondary: #555;
    --bg-primary: #FFFFFF;
    --bg-secondary: #f7f7f7;
    --border-color: #E1E8ED;
    --header-bg: #20b4b9;
    --footer-bg: #1d1d1d;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateX(2px);
}

.logo-img {
    height: 55px;
    width: 55px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.org-name {
    display: flex;
    flex-direction: column;
}

.org-acronym {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.org-full {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    max-width: 200px;
    line-height: 1.3;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

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

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--header-bg);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-content a:first-child {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-content a:hover {
    background-color: var(--primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector {
    position: relative;
}

.language-select {
    appearance: none;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235A6C7D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.language-select:hover {
    border-color: var(--primary-color);
}

.language-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 119, 181, 0.1);
}

.main-content {
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    background-color: var(--bg-secondary);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

p {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.site-footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.contact-link {
    color: #2b919d;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: #20b4b9;
    text-decoration: underline;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
    padding-left: 0.5rem;
}

.site-footer {
    position: relative;
    z-index: 9999;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    z-index: 9999;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.footer-tech a {
    color: #2b919d;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-secondary);
    border-radius: 16px;
    margin: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    will-change: transform;
}

.carousel-img {
    object-fit: cover;
    width: 600px;
    height: 400px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.carousel-img:hover {
    transform: scale(1.02);
}

.news-container-link {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}

.news-container-link:hover {
    text-decoration: none !important;
}

.news-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    transition: var(--transition);
    cursor: pointer;
}

.news-container:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.news-image {
    width: 280px;
    height: 200px;
    object-fit: contain;
    background-color: white;
    border-radius: 12px;
    flex-shrink: 0;
}

#news41-image {
    object-fit: contain;
}

#news41-slider-image {
    object-fit: contain;
    background-color: white;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.news-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-container,
.membership-container {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.about-container h2,
.membership-container h2 {
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    margin-left: 0 !important;
}

.executive-committee,
.executive-committee1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.aboutas-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.aboutas-container:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

#imgforicon1 {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--border-color);
}

#members1name,
#members2name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 1rem;
    }

    .org-full {
        display: none;
    }

    .nav-list {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }

    .logo-img {
        height: 40px;
        width: 40px;
    }

    .org-acronym {
        font-size: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .nav-list {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-list::-webkit-scrollbar {
        display: none;
    }

    .dropdown-content {
        display: none !important;
    }

    .content-wrapper {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .news-container {
        flex-direction: column;
        text-align: center;
    }

    .news-image {
        width: 100%;
        height: 200px;
        object-fit: contain;
        background-color: white;
    }
}

#homeh1,
#aboutTitle,
#membershipTitle,
#for_patients_h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

#aboutas-founders,
#becomemember {
    color: var(--primary-dark);
    font-weight: 600;
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 2rem 0;
}

.dropdownhome,
.dropdownabout,
.dropdownscient,
.dropdownguide {
    position: relative;
}

ul {
    list-style: none;
}

li::marker {
    content: none;
    display: none;
}