* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green-dark: #1b3a28;
  --green-main: #1e4a31;
  --green-mid: #2a6040;
  --green-light: #e8f5ee;
  --green-bg: #f4faf6;
  --orange: #e8561a;
  --orange-light: #ff7a3d;
  --white: #ffffff;
  --text-dark: #111111;
  --text-gray: #666666;
  --text-light: #999999;
  --border: #e8e8e8;
  --radius: 16px;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: var(--text-dark);
  overflow-x: clip; /* clip instead of hidden to prevent breaking position sticky */
}

/* HEADER */
header {
  background: rgba(27, 58, 40, 0.85); /* var(--green-dark) with opacity */
  backdrop-filter: blur(12px); /* Glassmorphism */
  -webkit-backdrop-filter: blur(12px);
  padding: 0 56px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-left { display: flex; align-items: center; gap: 12px; flex: 1; }
.urfu-logo { height: 50px; width: auto; }
.header-logo { height: 30px; width: auto; }
nav { display: flex; gap: 32px; align-items: center; justify-content: center; }
nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
nav a:hover { color: #fff; }
.desktop-btn-wrap { flex: 1; display: flex; justify-content: flex-end; }
.btn-orange {
  background: var(--orange); color: #fff; border: none;
  padding: 10px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: background .2s;
}
.btn-orange:hover { background: var(--orange-light); }

/* HERO */
.hero {
  background: var(--green-dark);
  padding: 72px 56px 64px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: calc(100vh - 64px); position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { flex: 1; max-width: 580px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85); font-size: 11px; font-weight: 600;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.hero-badge::before { content: '●'; color: #4ade80; font-size: 8px; }
.hero h1 {
  color: #fff; font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.0; margin-bottom: 24px; letter-spacing: -1.5px;
}
.hero h1 .accent { color: #f5a623; display: block; }
.hero-sub {
  color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.55;
  margin-bottom: 40px; max-width: 460px;
}
.hero-btns { display: flex; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; }
.btn-orange-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 10px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all .2s;
}
.btn-orange-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.hero-stats { display: flex; gap: 40px; }
.hero-stat-num { color: #fff; font-size: 28px; font-weight: 900; display: block; }
.hero-stat-main { color: #fff; font-size: 20px; font-weight: 900; }
.hero-stat-sub { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 2px; }
.hero-image { flex-shrink: 0; margin-left: 48px; position: relative; z-index: 1; }
.hero-image-wrap {
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
}
.hero-image-wrap img {
  width: 310px; height: auto;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.35));
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* SECTION TAG */
.sec-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-light); color: var(--green-mid);
  font-size: 11px; font-weight: 700; padding: 5px 13px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 18px;
}
.sec-tag-dark {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85);
  font-size: 11px; font-weight: 700; padding: 5px 13px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 18px;
}

/* ABOUT */
.about-section { background: var(--green-bg); padding: 72px 56px; }
.about-section h2 { font-size: 40px; font-weight: 900; margin-bottom: 12px; }
.about-section .desc { color: var(--text-gray); font-size: 15px; max-width: 760px; margin-bottom: 44px; line-height: 1.6; }
.cards-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.feature-icon { font-size: 28px; margin-bottom: 18px; display: block; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }

/* STEPS */
.steps-section { background: #fff; padding: 72px 56px; }
.steps-section h2 { font-size: 40px; font-weight: 900; margin-bottom: 12px; }
.steps-section .desc { color: var(--text-gray); font-size: 15px; margin-bottom: 44px; }
.steps-list { max-width: 720px; display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: flex; gap: 20px; padding: 22px 0;
  border-bottom: 1px solid #f0f0f0; position: relative;
}
.step-row:last-child { border-bottom: none; }
.step-circle {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; flex-shrink: 0; margin-top: 2px;
  position: relative; z-index: 1;
}
.step-circle.green { background: var(--green-mid); color: #fff; }
.step-circle.orange { background: var(--orange); color: #fff; }
.step-body { flex: 1; }
.step-date-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 7px;
}
.step-date-tag.green { background: var(--green-light); color: var(--green-mid); }
.step-date-tag.orange { background: #fff1ec; color: var(--orange); }
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--text-dark); }
.step-desc { font-size: 13px; color: var(--text-gray); line-height: 1.55; }

/* DATES */
.dates-section { background: var(--green-bg); padding: 72px 56px; }
.dates-section h2 { font-size: 40px; font-weight: 900; margin-bottom: 12px; }
.dates-section .desc { color: var(--text-gray); font-size: 15px; margin-bottom: 44px; }
.dates-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.date-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--border); border-top-width: 4px;
  text-align: center; transition: transform .2s;
}
.date-card:hover { transform: translateY(-4px); }
.date-card.g { border-top-color: var(--green-mid); }
.date-card.o { border-top-color: var(--orange); }
.date-big { font-size: 44px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.date-big.g { color: var(--green-mid); }
.date-big.o { color: var(--orange); }
.date-month { font-size: 12px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.date-label { font-size: 13px; color: var(--text-gray); font-weight: 500; line-height: 1.4; }

/* FAQ */
.faq-section { background: #fff; padding: 72px 56px; }
.faq-section h2 { font-size: 40px; font-weight: 900; margin-bottom: 12px; }
.faq-section .desc { color: var(--text-gray); font-size: 15px; margin-bottom: 44px; }
.faq-wrap { max-width: 720px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--green-mid); }
.faq-q {
  padding: 20px 22px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; background: #fff;
  transition: background .2s, color .2s;
}
.faq-item.open .faq-q { background: var(--green-light); color: var(--green-mid); }
.faq-btn {
  width: 30px; height: 30px; border-radius: 50%;
  min-width: 30px; min-height: 30px;
  background: var(--green-light); color: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300; flex-shrink: 0;
  transition: all .25s; line-height: 0; padding-bottom: 2px;
}
.faq-item.open .faq-btn { background: var(--green-mid); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: 14px; color: #555; line-height: 1.6;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 20px; }

/* EVENTS */
.events-section { background: var(--green-bg); padding: 72px 56px; }
.events-section h2 { font-size: 40px; font-weight: 900; margin-bottom: 12px; }
.events-section .desc { color: var(--text-gray); font-size: 15px; margin-bottom: 44px; }
.featured-card {
  background: var(--green-dark); border-radius: var(--radius);
  padding: 36px; margin-bottom: 24px;
  display: flex; gap: 32px;
}
.feat-left { flex: 1; }
.feat-date {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.1); border-radius: 12px;
  padding: 10px 16px; margin-bottom: 16px;
}
.feat-date-num { color: #fff; font-size: 32px; font-weight: 900; line-height: 1; }
.feat-date-mon { color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.feat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,166,35,0.2); color: #f5a623;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; text-transform: uppercase; margin-bottom: 14px;
}
.feat-title { color: #fff; font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.feat-location { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 16px; }
.feat-desc { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.feat-schedule { display: flex; flex-direction: column; gap: 8px; }
.feat-row { display: flex; gap: 14px; align-items: flex-start; color: rgba(255,255,255,0.75); font-size: 13px; }
.feat-time { color: #f5a623; font-weight: 700; min-width: 44px; flex-shrink: 0; }
.feat-right { flex-shrink: 0; width: 280px; display: flex; flex-direction: column; gap: 10px; }
.feat-right-title { color: rgba(255,255,255,0.45); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.partner-pill {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 10px 14px;
  color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 600;
}
.merch-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.merch-tag {
  background: rgba(255,255,255,0.08); border-radius: 20px;
  padding: 4px 10px; font-size: 11px; color: rgba(255,255,255,0.6);
}
.feat-btn {
  display: block; text-align: center; margin-top: 12px;
  background: var(--orange); color: #fff;
  padding: 14px 20px; border-radius: 12px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s;
}
.feat-btn:hover { background: var(--orange-light); }

/* Event mini cards */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ev-card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.ev-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.ev-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.ev-date-box {
  min-width: 52px; text-align: center; background: var(--green-light);
  border-radius: 10px; padding: 6px 10px; flex-shrink: 0;
}
.ev-date-num { font-size: 20px; font-weight: 900; color: var(--green-mid); line-height: 1; }
.ev-date-mon { font-size: 10px; font-weight: 700; color: var(--text-light); text-transform: uppercase; }
.ev-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 5px;
}
.ev-badge.action { background: #fff4e5; color: #d97706; }
.ev-badge.sport  { background: #e5f0ff; color: #2563eb; }
.ev-badge.kino   { background: #fef2f2; color: #dc2626; }
.ev-badge.creative { background: #f3e8ff; color: #7c3aed; }
.ev-badge.cyber  { background: #ecfdf5; color: #059669; }
.ev-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.ev-desc { font-size: 13px; color: var(--text-gray); line-height: 1.55; margin-bottom: 12px; flex: 1; }
.ev-meta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.ev-meta-row { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-gray); }
.ev-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.ev-status { font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.ev-status.active { color: #16a34a; }
.ev-status.soon { color: var(--text-gray); }
.ev-status::before { content: 'в—Џ'; font-size: 8px; }
.btn-ev {
  border: 1.5px solid var(--green-mid); color: var(--green-mid);
  background: transparent; padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all .2s;
}
.btn-ev:hover { background: var(--green-mid); color: #fff; }
.events-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 16px; }

/* PARTNERS */
.partners-section { background: var(--green-dark); padding: 72px 56px; }
.partners-section h2 { font-size: 40px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.partners-section .desc { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 44px; }
.partners-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: start; }
.partner-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 0;
}
.partner-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.partner-logo-img { width: 80px; height: 80px; object-fit: contain; background: #fff; border-radius: 12px; padding: 6px; }
.partner-star-badge {
  background: rgba(245,166,35,0.2); color: #f5a623;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; display: flex; align-items: center; gap: 5px;
}
.partner-cat {
  display: inline-block; background: var(--green-light); color: var(--green-mid);
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 12px; text-transform: uppercase;
}
.partner-name { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.partner-desc { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.55; margin-bottom: 16px; }
.partner-offer { color: var(--orange); font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.partner-fine { color: rgba(255,255,255,0.35); font-size: 11px; margin-bottom: 16px; }
.btn-partner {
  display: block; text-align: center;
  background: var(--green-mid); color: #fff;
  padding: 13px 20px; border-radius: 12px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s;
}
.btn-partner:hover { background: #34855a; }
.promo-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 28px;
  display: flex; align-items: center; justify-content: center;
}
.promo-card img { width: 100%; max-width: 280px; border-radius: 12px; }
.soon-card {
  background: rgba(255,255,255,0.03);
  border: 1.5px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 200px; gap: 10px;
}
.soon-plus { width: 40px; height: 40px; border: 2px dashed rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-size: 24px; }
.soon-text { color: rgba(255,255,255,0.3); font-size: 13px; }

/* CONTACT */
.contact-section { background: var(--green-bg); padding: 72px 56px; }
.contact-section h2 { font-size: 40px; font-weight: 900; margin-bottom: 12px; }
.contact-section .desc { color: var(--text-gray); font-size: 15px; margin-bottom: 44px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; }
.contact-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border);
  display: flex; gap: 18px; align-items: flex-start;
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.07); }
.contact-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: #e8f4fd; display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.contact-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.contact-card p { font-size: 13px; color: var(--text-gray); line-height: 1.4; margin-bottom: 14px; }
.btn-contact {
  display: inline-block; background: #2196f3; color: #fff;
  padding: 9px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background .2s;
}
.btn-contact:hover { background: #1976d2; }

/* FOOTER */
footer {
  background: var(--green-dark); padding: 48px 56px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand-name { color: #fff; font-size: 15px; font-weight: 800; letter-spacing: 0.5px; }
.footer-copy { color: rgba(255,255,255,0.45); font-size: 12px; }
.footer-parrot { height: 48px; }
.footer-links { display: flex; justify-content: flex-end; gap: 32px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500; text-decoration: none; transition: all .2s; }
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

/* MOBILE RESPONSIVE STYLES */
.hamburger { display: none; background: transparent; border: none; color: #fff; font-size: 28px; cursor: pointer; padding: 0 10px; }
.mobile-only-btn { display: none; }

@media (max-width: 992px) {
  .hero-image-wrap { width: 280px; height: 280px; }
  .hero-image-wrap img { width: 240px; }
  .hero-stats { gap: 20px; flex-direction: column; }
  .about-section, .steps-section, .dates-section, .faq-section, .events-section, .partners-section, .contact-section { padding: 50px 30px; }
  .cards-row { grid-template-columns: repeat(2, 1fr); }
  .dates-row { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .desktop-btn, .desktop-btn-wrap { display: none; }
  .mobile-only-btn { display: inline-block; text-align: center; margin-top: 10px; }
  
  nav#main-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--green-dark); flex-direction: column; padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1); gap: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 999;
  }
  nav#main-nav.active { display: flex; }
  
  header { padding: 0 20px; }
  .urfu-logo { height: 40px; }
  .header-logo { height: 24px; }
  
  .about-section, .steps-section, .dates-section, .faq-section, .events-section, .partners-section, .contact-section { padding: 40px 20px; }
  .hero { flex-direction: column-reverse; padding: 40px 20px; text-align: center; min-height: calc(100vh - 64px); justify-content: center; }
  .hero-image { margin-left: 0; margin-bottom: 40px; }
  .hero-image-wrap { width: 240px; height: 240px; margin: 0 auto; }
  .hero-image-wrap img { width: 200px; }
  .hero h1 { font-size: 40px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { text-align: center; flex-direction: row; justify-content: center; gap: 40px; }
  
  .cards-row, .dates-row, .events-grid, .events-grid-2, .partners-grid, .contact-row { grid-template-columns: 1fr; }
  
  .featured-card { flex-direction: column; gap: 20px; padding: 24px; }
  .feat-right { width: 100%; }
  
  .step-row { flex-direction: column; gap: 10px; }
  .step-circle { margin-bottom: 5px; }
  
  footer { display: flex; flex-direction: column; text-align: center; gap: 32px; padding: 48px 20px 40px; }
  .footer-parrot { order: 1; height: 40px; }
  .footer-links { order: 2; justify-content: center; flex-direction: column; gap: 16px; }
  .footer-brand { order: 3; gap: 8px; opacity: 0.8; }
}

/* Partner disclaimer bar */
.partner-disclaimer-bar {
  width: 100%;
  background: rgba(20, 45, 30, 0.95);
  padding: 10px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}
.partner-disclaimer-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  max-width: 900px;
}
@media (max-width: 768px) { .partner-disclaimer-bar { padding: 10px 16px; } }
