:root {
  --primary-color: #2980B9;
  --secondary-color: #0F0766;
  --accent-color: #577BC1;
  --light-color: #ECF0F1;
  --dark-color: #000957;
  --gradient-primary: linear-gradient(135deg, #2980B9 0%, #0F0766 100%);
  --hover-color: #1F5F8B;
  --background-color: #F2F2F2;
  --text-color: #2C3E50;
  --border-color: rgba(87, 123, 193, 0.2);
  --divider-color: rgba(15, 7, 102, 0.1);
  --shadow-color: rgba(15, 7, 102, 0.1);
  --highlight-color: #F39C12;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', serif;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font);
  font-weight: 700;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.logo img {
  height: 40px;
  width: auto;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navigation a {
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

/* Mobile Navigation */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }

  .logo {
    order: 1;
    margin-bottom: 1rem;
  }

  .hamburger {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    order: 2;
  }

  .navigation {
    order: 3;
    width: 100%;
  }

  .navigation ul {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #menu-toggle:checked~.navigation ul {
    max-height: 300px;
  }

  #menu-toggle:checked~.hamburger span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  #menu-toggle:checked~.hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked~.hamburger span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* Neumorphism styles */
.neumorphism {
  border-radius: 20px;
  box-shadow:
    8px 8px 16px rgba(15, 7, 102, 0.1),
    -8px -8px 16px rgba(255, 255, 255, 0.7);
}

.neumorphism-inset {
  border-radius: 20px;
  box-shadow:
    inset 8px 8px 16px rgba(15, 7, 102, 0.1),
    inset -8px -8px 16px rgba(255, 255, 255, 0.7);
}

/* Footer Styles */
footer {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

footer .logo {
  flex: 1;
}

footer nav {
  flex: 2;
  display: flex;
  justify-content: flex-end;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

footer nav a {
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  footer .logo {
    order: 1;
  }

  footer nav {
    order: 2;
    justify-content: center;
  }

  footer nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}