/* Base styles */
:root {
  --primary-color: #005BBB; /* Блакитний український */
  --secondary-color: #2f3133; /* Темно-сірий */
  --accent-color: #FFD700; /* Яскраво-жовтий */
  --blue-color: #0057B7; /* Синій український */
  --yellow-color: #FFD700; /* Жовтий український */
  --text-color: #d9d9d9; /* Світло-сірий для тексту */
  --dark-color: #1a1c1e; /* Темний для фону */
  --light-color: #f5f5f5; /* Світлий для контрасту */
  --gray-color: #404040; /* Сірий для розділів */
  --border-color: #555555; /* Колір рамок */
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Тінь елементів */
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--dark-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

/* Utility classes */
.hidden {
  display: none !important;
}

/* Responsive base styles */
@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
}
