:root {
    --color-white: #ffffff;
    --color-black: #111116;
    --color-primary-dark: #021f35;
    --color-text-gray: #7e8492;
    --color-border-light: rgba(17, 17, 22, 0.1);
    --font-primary: 'Bricolage Grotesque', sans-serif;
    --font-secondary: 'Satoshi', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-black);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    min-width: 10px !important;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 20px;
    height: 65px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-to-top-btn img {
    transform: rotate(181deg);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* Language Selector */
.lang-selector {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 20px;
}

.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.lang-flag:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lang-flag.active {
  opacity: 1;
  border-color: var(--color-primary-dark);
  transform: scale(1.1);
}

.scroll-to-top-btn img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 1200px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}