:root {
    --primary-color: #0B8165;
    /* Dark Green */
    --secondary-color: #059669;
    /* Emerald */
    --accent-color: #B2E506;
    /* Lime Green */
    --bg-light: #ffffff;
    --bg-subtle: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(11, 129, 101, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(178, 229, 6, 0.08), transparent 25%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.logo img {
    height: 36px;
    width: 36px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 16px;
    align-items: center;
    color: var(--text-muted);
}

.lang-switcher a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.lang-switcher a.active {
    color: var(--primary-color);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    flex: 1;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content .highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(11, 129, 101, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(11, 129, 101, 0.35);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper {
    width: 320px;
    height: 320px;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--accent-color), transparent 30%);
    animation: rotate 5s linear infinite;
    opacity: 0.15;
}

.icon-wrapper img {
    width: 220px;
    height: 220px;
    z-index: 10;
    border-radius: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.glass-panel {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 56px;
    border-radius: 32px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.glass-panel h1 {
    font-size: 2.8rem;
    margin-bottom: 32px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.glass-panel .effective-date {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 32px;
    font-weight: 600;
}

.glass-panel h2 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.glass-panel ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.glass-panel li {
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 32px;
    position: relative;
    color: var(--text-dark);
}

.glass-panel li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

footer {
    padding: 40px 5%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    line-height: 1.8;
    background: var(--bg-light);
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
        /* simple mobile version */
    }

    .glass-panel {
        padding: 32px;
    }

    .glass-panel h1 {
        font-size: 2rem;
    }
}
