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

:root {
  --bg: #F9FCFB;
  --surface: #FFFFFF;
  --text: #0F1F1C;
  --muted: #5E7D77;
  --primary: #00C49A;
  --secondary: #156064;
  --accent: #FFB238;
  --border: rgba(0, 196, 154, 0.12);
  --nav-dark-left: #1a2e2b;
  --nav-dark-right: #0f1f1c;
  --max-w: 1200px;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--primary);
}

.disclosure {
  background: linear-gradient(90deg, #0a1210 0%, #156064 100%);
  color: #f0faf8;
  font-size: 11px;
  text-align: center;
  padding: 10px 16px;
  width: 100%;
  line-height: 1.5;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  width: 100%;
  height: 60px;
  background: var(--nav-dark-right);
}

.navbar__half {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 50%;
}

.navbar__half--left {
  background: var(--nav-dark-left);
  justify-content: flex-start;
  padding-left: max(16px, calc((100vw - var(--max-w)) / 2));
}

.navbar__half--right {
  background: var(--nav-dark-right);
  justify-content: flex-end;
  padding-right: max(16px, calc((100vw - var(--max-w)) / 2));
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar__logo img {
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.navbar__links a {
  color: #e8f5f2;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.navbar__links a:hover {
  color: var(--primary);
}

.navbar__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.3s ease;
}

.navbar__drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--nav-dark-right);
  z-index: 1001;
  padding: 80px 24px 24px;
  transition: right 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  overflow-y: auto;
}

.navbar__drawer.open {
  right: 0;
}

.navbar__drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.navbar__drawer a {
  color: #e8f5f2;
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 8px 0;
}

.navbar__drawer a:hover {
  color: var(--primary);
}

.navbar__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.navbar__overlay.open {
  display: block;
}

.navbar__drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 900px) {
  .navbar {
    background: var(--nav-dark-right);
    padding: 0 16px;
    justify-content: space-between;
  }

  .navbar__half {
    max-width: none;
    flex: unset;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }

  .navbar__half--right .navbar__links {
    display: none;
  }

  .navbar__burger {
    display: block;
  }

  .navbar__drawer {
    display: block;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
  min-height: 300px;
  padding: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent), #ff6b9d, var(--secondary));
  background-size: 300% 300%;
  animation: rainbowShift 8s ease infinite;
}

@keyframes rainbowShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__headline {
  background: var(--surface);
  padding: 40px 32px;
  display: flex;
  align-items: center;
  min-height: 200px;
}

.hero__headline h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: perspective(500px) rotateY(-3deg);
}

.hero__image {
  overflow: hidden;
  min-height: 200px;
  position: relative;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transform: perspective(800px) rotateX(4deg) scale(1.05);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero__image:hover img {
  transform: perspective(800px) rotateX(0deg) scale(1.1);
}

.hero__subtitle {
  background: var(--bg);
  padding: 32px;
  display: flex;
  align-items: center;
  min-height: 160px;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 196, 154, 0.04) 10px, rgba(0, 196, 154, 0.04) 20px);
}

.hero__subtitle p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__headline { order: 1; }
  .hero__image--top { order: 2; }
  .hero__subtitle { order: 3; }
  .hero__image--bottom { display: none; }
}

.offers {
  position: relative;
  padding: 64px 16px;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.offers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 28, 0.82);
}

.offers__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers__title {
  text-align: center;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 40px;
  text-shadow: 0 0 20px rgba(0, 196, 154, 0.5);
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.offer-card {
  background: linear-gradient(160deg, #1e3a36 0%, #0d1f1c 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(0, 196, 154, 0.3);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 196, 154, 0.25);
}

.offer-card__logo-wrap {
  background: #fff;
  width: 200px;
  height: 80px;
  margin: 20px auto 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-card__logo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-card__name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.offer-card__bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card__bonus {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-card__terms {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.offer-card__desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.offer-card__cta {
  display: inline-block;
  margin-top: auto;
  padding: 12px 20px;
  background: linear-gradient(90deg, var(--primary), #00e6b8);
  color: var(--text);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 196, 154, 0.4);
  color: var(--text);
}

.info-section {
  padding: 56px 16px;
  overflow: hidden;
}

.info-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--secondary);
}

.info-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.info-1 {
  background: var(--surface);
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--accent);
}

.info-1 .info-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-1 .decor-wrap {
  perspective: 600px;
}

.info-1 .decor-wrap img {
  max-width: 500px;
  max-height: 320px;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 196, 154, 0.2);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.4s ease;
}

.info-1 .decor-wrap img:hover {
  transform: rotateY(0) rotateX(0) scale(1.03);
}

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

.info-2 {
  background: repeating-conic-gradient(rgba(0, 196, 154, 0.06) 0% 25%, transparent 0% 50%) 0 0 / 40px 40px;
}

.info-2 .info-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
}

.info-2 h2 {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-3 {
  background: var(--secondary);
  color: #fff;
}

.info-3 h2,
.info-3 p {
  color: #fff;
}

.info-3 .info-section__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

.info-3 .decor-wrap img {
  max-width: 500px;
  max-height: 320px;
  border: 4px solid var(--accent);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .info-3 .info-section__inner {
    grid-template-columns: 1fr;
  }
}

.info-4 {
  background: var(--bg);
}

.info-4 .info-section__inner {
  display: flex;
  gap: 32px;
}

.info-4 .info-4__badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent), #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  transform: perspective(400px) rotateX(15deg);
  box-shadow: 0 12px 32px rgba(255, 178, 56, 0.4);
}

@media (max-width: 600px) {
  .info-4 .info-section__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.info-5 {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.info-5 .info-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-5 .decor-wrap {
  order: 2;
  text-align: right;
}

.info-5 .decor-wrap img {
  max-width: 500px;
  max-height: 320px;
  margin-left: auto;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.info-5 .info-5__text {
  order: 1;
}

@media (max-width: 768px) {
  .info-5 .info-section__inner {
    grid-template-columns: 1fr;
  }

  .info-5 .decor-wrap {
    order: 1;
    text-align: center;
  }

  .info-5 .decor-wrap img {
    margin: 0 auto;
  }

  .info-5 .info-5__text {
    order: 2;
  }
}

.info-6 {
  background: var(--text);
  position: relative;
}

.info-6::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0, 196, 154, 0.05) 20px, rgba(0, 196, 154, 0.05) 40px);
  pointer-events: none;
}

.info-6 .info-section__inner {
  position: relative;
  z-index: 1;
  border: 2px solid var(--primary);
  padding: 40px;
  background: rgba(21, 96, 100, 0.3);
}

.info-6 h2 {
  color: var(--primary);
}

.info-6 p {
  color: #c8e6e0;
}

.info-7 {
  background: var(--surface);
}

.info-7 .info-section__inner {
  columns: 2;
  column-gap: 48px;
}

.info-7 h2 {
  column-span: all;
}

@media (max-width: 600px) {
  .info-7 .info-section__inner {
    columns: 1;
  }
}

.info-8 {
  background: linear-gradient(135deg, #e8faf6 0%, #fff5e0 50%, #ffe8f0 100%);
}

.info-8 .info-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-8 .decor-wrap img {
  max-width: 500px;
  max-height: 320px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--primary), 0 0 0 16px var(--accent);
}

@media (max-width: 768px) {
  .info-8 .info-section__inner {
    grid-template-columns: 1fr;
  }
}

.info-9 {
  background-image: linear-gradient(rgba(249, 252, 251, 0.92), rgba(249, 252, 251, 0.92)),
    repeating-linear-gradient(0deg, var(--border) 0px, var(--border) 2px, transparent 2px, transparent 20px);
}

.info-9 .info-section__inner {
  text-align: center;
  max-width: 900px;
}

.info-9 h2 {
  font-size: 2.2rem;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent), var(--secondary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbowShift 4s linear infinite;
}

.info-10 {
  background: var(--secondary);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 80px 16px;
}

.info-10 h2 {
  color: var(--accent);
}

.info-10 p {
  color: #b8e0dc;
}

.info-10 .info-section__inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.info-10 .info-10__icon {
  font-size: 3rem;
  flex-shrink: 0;
  transform: perspective(300px) rotateY(-20deg);
  filter: drop-shadow(4px 8px 0 var(--accent));
}

@media (max-width: 600px) {
  .info-10 .info-section__inner {
    flex-direction: column;
  }
}

.footer {
  background: linear-gradient(180deg, var(--nav-dark-left) 0%, #0a1210 100%);
  color: #c8e6e0;
  padding: 48px 16px 24px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo img {
  height: 40px;
  margin-bottom: 16px;
}

.footer__logo p {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  list-style: none;
}

.footer__links a {
  color: #a8d4cc;
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.footer__badges a {
  display: block;
  transition: transform 0.3s ease;
}

.footer__badges a:hover {
  transform: scale(1.1);
}

.footer__badges img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer__bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.hidden {
  display: none;
}

.modal {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  border: 3px solid var(--primary);
  box-shadow: 0 24px 64px rgba(0, 196, 154, 0.3);
  transform: perspective(600px) rotateX(2deg);
}

.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.modal p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.modal__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal__btn {
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn--confirm {
  background: linear-gradient(90deg, var(--primary), #00e6b8);
  color: var(--text);
}

.modal__btn--decline {
  background: #e0e0e0;
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--nav-dark-left), var(--secondary));
  color: #fff;
  padding: 16px 24px;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 0.85rem;
  max-width: 700px;
  line-height: 1.5;
}

.cookie-banner__btn {
  padding: 10px 24px;
  background: var(--primary);
  color: var(--text);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.cookie-banner__btn:hover {
  transform: scale(1.05);
}

.page-header {
  background: linear-gradient(135deg, var(--secondary), var(--nav-dark-right));
  padding: 48px 16px;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}

.legal-content h2 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin: 32px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__error {
  color: #d32f2f;
  font-size: 0.8rem;
  display: none;
}

.contact-form__error.visible {
  display: block;
}

.contact-form__submit {
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--primary), #00e6b8);
  color: var(--text);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.contact-form__submit:hover {
  transform: scale(1.03);
}

.contact-success {
  text-align: center;
  padding: 48px 16px;
  max-width: 560px;
  margin: 0 auto;
}

.contact-success h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-success p {
  color: var(--muted);
}

.contact-success.hidden,
.contact-form.hidden {
  display: none;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 16px;
}

.error-page h1 {
  font-size: 6rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.error-page a {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--text);
  font-weight: 700;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.error-page a:hover {
  transform: scale(1.05);
  color: var(--text);
}

.simple-nav {
  background: var(--nav-dark-right);
  padding: 0 16px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.simple-nav__logo img {
  height: 36px;
}

.simple-nav__home {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
}

@media (max-width: 768px) {
  .offer-card__logo-wrap {
    width: 180px;
    height: 72px;
  }

  .offer-card__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .offer-card__bonus {
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .hero {
    overflow: hidden;
  }

  .hero__image img {
    transform: none;
    min-height: 160px;
  }

  .decor-wrap img,
  .info-1 .decor-wrap img,
  .info-3 .decor-wrap img,
  .info-5 .decor-wrap img,
  .info-8 .decor-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
    transform: none;
    box-shadow: none;
    clip-path: none;
    border-radius: 12px;
  }

  .info-8 .decor-wrap img {
    box-shadow: none;
  }

  .info-section {
    overflow: hidden;
  }
}
