/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
}

:root {
  --primary: #f21a32;
  --secondary: #1f122e;
}

/* Top Bar */
.GDS32198-top-bar {
  background-color: var(--secondary);
  padding: 0.3rem 2rem;
  text-align: right;
  color: white;
}

.GDS32198-lang-switcher span {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-family: sans-serif;
}

.GDS32198-lang-switcher span:hover {
  cursor: pointer;
  color: var(--primary);
}

/* Navbar */
.GDS32198-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 32px;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

.GDS32198-logo {
  flex-basis: 12%;
}

.GDS32198-logo a {
  display: flex
}

.GDS32198-logo a img {
  width: 100%;
  height: 100%;
}

.GDS32198-nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.GDS32198-nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.GDS32198-nav-links li a:hover {
  color: var(--primary);
}


/* Mobile menu toggle */
.GDS32198-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
}

/* Nav links default for mobile */
.GDS32198-nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

/* Toggle icons visibility */
.GDS32198-menu-toggle .close-icon {
  display: none;
}

.GDS32198-menu-toggle.active .close-icon {
  display: inline;
}

.GDS32198-menu-toggle.active .open-icon {
  display: none;
}

/* Hero Section */
.GDS32198-hero {
  background: var(--primary);
  padding: 2rem;
  text-align: center;
}

.GDS32198-hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}

/* Main Section */
.GDS32198-main-section {
  flex-wrap: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem;
  gap: 2rem;
}

.GDS32198-sidebar {
  flex-basis: 35%;
}

.GDS32198-tab-links {
  list-style: none;
}

.GDS32198-tab-links a {
  background-color: whitesmoke;
  border: 1px solid rgba(0, 0, 0, 0.120);
  margin-top: 2px;
  padding: 15px 24px;
  text-decoration: none;
  color: gray;
  font-weight: 500;
  display: block;
}

.GDS32198-tab-links a:hover {
  color: var(--primary);
}

.GDS32198-content {
  flex-basis: 60%;
}

.GDS32198-content h2 {
  text-decoration: underline;
  padding-bottom: 7px;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.GDS32198-content h3 {
  padding: 5px 0;
}

.GDS32198-content p {
  padding: 5px 0;
}

.GDS32198-content ul {
  padding-left: 40px;
}

.GDS32198-content ul li {
  padding: 5px 0;
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: #eee;
  padding: 3rem 3rem 1rem;
}

.GDS32198-footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #444;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.GDS32198-social-icons a {
  color: #eee;
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.GDS32198-social-icons a:hover {
  color: var(--primary);
}

.GDS32198-contact-info span {
  margin-left: 1.5rem;
  font-size: 0.9rem;
}

.GDS32198-contact-info i {
  margin-right: 0.3rem;
}

/* Footer bottom */
.GDS32198-footer-bottom {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.GDS32198-footer-bottom p {
  margin-bottom: 0.5rem;
  color: lightgray;
}

.GDS32198-powered-by img {
  margin: 0 0.5rem;
  height: 30px;
}

/* Responsive */
@media (max-width: 768px) {

  /* header */

  .GDS32198-nav-links {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 0rem 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
  }

  .GDS32198-nav-links.active {
    padding: 1rem 2rem;
    max-height: 300px;
    /* enough to show all items */
  }

  .GDS32198-menu-toggle {
    display: block;
  }

  /* main */

  .GDS32198-main-section {
    flex-wrap: wrap;
    padding: 3rem 2rem;
  }

  .GDS32198-main-section .GDS32198-sidebar {
    flex-basis: 100% !important;
  }

  .GDS32198-main-section .GDS32198-content {
    flex-basis: 100%;
  }


  /* footer */

  .GDS32198-footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .GDS32198-contact-info span {
    display: block;
    margin: 0.5rem 0;
  }

  .GDS32198-footer-bottom {
    flex-wrap: wrap-reverse;
    gap: 10px;
  }

}