@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
    list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    height: 100%;
    background: #ffffff;
  }
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}
  
html {
    height: 100%;
    scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: #35267b;
  color: #fff;
  position: relative;
  z-index: 1000;
}

header a {
    color: #fff;
    font-size: 23px;
}


header .logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #16501d;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 6px 8px;
  border-radius: 4px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #f7c600;
  background-color: rgba(247, 198, 0, 0.15);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
    color: black;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 60px 20px 20px 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .nav-menu {
        display: flex;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

.hero {
  background: #35267b;
  color: #fff;
  padding: 30px 20px 20px;
  text-align: center;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 0.8rem;
  font-weight: 400;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero {
    padding: 15px 15px 10px;
  }

  .hero h1 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 0.5rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 15px 10px 10px;
  }

  .hero h1 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.6rem;
  }
}

.offers {
  background: #35267b;
}

.offers-list {
    padding: 0 30px 50px;
}

.offers-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 60px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  color: #fff;
  max-width: 1100px;
  border-radius: 20px;
  margin: 0 auto;
  transition: background-color 0.3s ease;
  margin-bottom: 30px;
  background-color: #111;
}

.offers-list img {
  width: 190px;
  object-fit: contain;
  flex-shrink: 0;
}

.offers-list h3 {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  padding-right: 10px;
  color: #fff;
  max-width: 220px;
  text-align: center;
}

.grade, .deposit {
  flex: 0 0 80px;
  text-align: center;
}

.grade h4 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
}

.grade p {
  font-size: 13px;
  font-weight: 400;
}

.deposit h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.deposit p {
  font-size: 13px;
  font-weight: 400;
  color: #ddd;
}

.offer-btn {
  flex-shrink: 0;
}

.offer-btn a {
  background-color: #024c6e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.offer-btn a:hover {
  background-color: #072a0f;
}

@media (max-width: 768px) {
  .offers-list li {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 100%;
    padding: 15px 20px;
  }
  
  .offers-list img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 10px;
  }

  .offers-list h3 {
    font-size: 15px;
    text-align: center;
  }

  .grade, .deposit {
    flex: unset;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .grade h4, .deposit h4 {
    font-size: 1.8rem;
  }

  .offer-btn {
    width: 100%;
    text-align: left;
  }

  .offer-btn a {
    width: 100%;
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
  }
}

.info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #222;
}

.info h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #35267b;
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.3;
}

.info ul {
    padding-left: 0;
}

.info li {
    background: #fafafa;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.info li:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.info li h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #35267b;
    margin-bottom: 15px;
}

.info li p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 900px) {
    .info ul {
        grid-template-columns: 1fr;
    }

    .info h2 {
        font-size: 2rem;
    }

    .info li {
        padding: 20px 22px;
    }

    .info li h3 {
        font-size: 1.4rem;
    }
}




.footer-card {
    background-color: #35267b;
}

.footer-card img {
    width: 159px;
    height: auto;
}

.footer-card ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-card ul {
        flex-direction: column;
        align-items: center;
    }
}

footer {
  background-color: #35267b;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 23px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ff3b1f;
}

footer a img {
  width: 35px;
  height: auto;
  border-radius: 5px;
}

footer > img {
  display: block;
  margin: 15px auto;
  width: 50px;
  height: auto;
}

.nav-menu_footer {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-menu_footer li a {
  color: #ccc;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu_footer li a:hover {
  background-color: #ff6f61;
  color: #fff;
}

footer p {
  font-size: 0.9rem;
  margin-top: 20px;
  color: #777;
}

@media (max-width: 600px) {
  .nav-menu_footer {
    flex-direction: column;
    gap: 15px;
  }

  footer a {
    font-size: 1rem;
    gap: 8px;
  }

  footer > img {
    width: 40px;
  }
}

.privacy {
  padding: 30px 40px;
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  color: #11181f;
  line-height: 1.5;
}

.privacy h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  color: #000000;
  text-align: center;
  font-weight: 700;
}

.privacy h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 6px solid #37074b;
  padding-left: 14px;
  font-weight: 600;
  color: #000000;
}

.privacy p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #000000;
}

.privacy ul {
  margin-left: 20px;
  margin-bottom: 24px;
  list-style-type: disc;
  color: #000000;
}

.privacy ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.privacy a {
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy a:hover,
.privacy a:focus {
  color: #451262;
  outline: none;
}

@media (max-width: 768px) {
  .privacy {
    padding: 25px 30px;
  }

  .privacy h1 {
    font-size: 2rem;
  }

  .privacy h2 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .privacy p,
  .privacy ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .privacy {
    padding: 20px 15px;
  }

  .privacy h1 {
    font-size: 1.7rem;
  }

  .privacy h2 {
    font-size: 1.3rem;
  }

  .privacy p,
  .privacy ul li {
    font-size: 0.9rem;
  }
}

.disclaimer {
    max-width: 700px;
    margin: 0 auto;
}

.disclaimer span {
    font-weight: 900;
    font-size: 18px;
}

.disclaimer h5 {
    font-weight: 200;
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.disclaimer-title {
    color: #ffffff;
}

@media (max-width: 768px) {
    .disclaimer h5 {
        font-size: 14px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .disclaimer h5 {
        font-size: 13px;
        padding: 0 10px;
    }

    .disclaimer-title {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
    }
}


section.map {
  padding: 2rem;
  background-color: #f9fafb;
  border-radius: 1rem;
  max-width: 1200px;
  margin: 2rem auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

section.map h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #111827;
}

section.map ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

section.map h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

section.map li {
  margin-bottom: 0.75rem;
}

section.map a {
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
  transition: color 0.2s ease;
}

section.map a:hover {
  color: #1d4ed8;
}

@media (min-width: 768px) {
  section.map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  section.map ul {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  section.map h1 {
    font-size: 2.5rem;
  }

  section.map h3 {
    font-size: 1.5rem;
  }

  section.map a {
    font-size: 1rem;
  }
}

section.map li {
  display: flex;
  align-items: center;
}

section.map li a {
  flex: 1;
} 
