/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #181D27;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.header {
    padding: 1rem 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
}

.header .cat {
    background-image: url('../cta-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 40px;
}

.nav {
    margin-right: auto;
    margin-left: 2rem;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #6B7280;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #7F56D9;
}

.actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    border: 1px solid #D5D7DA;
    background: white;
    color: #414651;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: #F9FAFB;
    border-color: #7F56D9;
    color: #7F56D9;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    overflow: hidden;



    
    z-index: 999;
}

.lang-dropdown.hidden {
    display: none;
}

.lang-option {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #414651;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #F9FAFB;
    color: #7F56D9;
}

.lang-option.active {
    background: #F5F3FF;
    color: #7F56D9;
    font-weight: 600;
}

/* Button Styles */
.btn {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: #7F56D9;
    color: white;
    border: 1px solid #7F56D9;
    outline: 1px solid white;
}

.btn-primary:hover {
    background: #6D48C1;
}

.btn-outline {
    border: 1px solid #D5D7DA;
    background: white;
    color: #414651;
    outline: 1px solid white;
}

.btn-outline:hover {
    background: #F9FAFB;
}

.card-link {
    text-decoration: none;
}