/* =====================
   RESET + BASE
===================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Inter, Arial, sans-serif;
  line-height: 1.65;
  color: #111;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 820px;
}

/* =====================
   HEADER
===================== */

.header {
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.nav a {
  margin-left: 20px;
  font-size: 0.95rem;
}

.nav a.active {
  font-weight: 600;
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
}

.lang-switch a {
  margin-left: 10px;
  font-weight: 600;
  opacity: 0.5;
}

.lang-switch a.active {
  opacity: 1;
}

/* =====================
   BUTTONS
===================== */

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  border: 2px solid #000;
  color: #000;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
}

/* =====================
   HERO (HOME)
===================== */

.hero {
  position: relative;
  overflow: hidden;

  min-height: 75vh;
  display: flex;
  align-items: center;

  text-align: center;
  color: #fff;
}

/* obraz jako LCP */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* gradient overlay – dokładnie jak wcześniej */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.65)
  );
  z-index: -1;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero .btn-primary {
  padding: 15px 32px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* =====================
   HERO (SUBPAGES)
===================== */

.hero-sub {
  min-height: auto;
  padding: 90px 0;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("../img/group-kids-studying-school.jpg") center / cover no-repeat;
}

/* =====================
   BENEFITS
===================== */

.benefits {
  background: #f7f7f7;
  padding: 100px 0;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.box {
  background: #fff;
  padding: 36px 32px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: center;
}

.box h3 {
  margin-bottom: 14px;
}

.box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.08);
}

.box h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

/* =====================
   TARGET
===================== */

.target {
  padding: 100px 0;
}

.target h2 {
  margin-bottom: 35px;
  text-align: center;
  font-size: 2rem;
}

.target ul {
  list-style: none;
  text-align: center;
}

.target li {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

/* =====================
   ABOUT / CONTENT
===================== */

.about {
  background: #fff;
  padding: 110px 0;
}

.about p {
  font-size: 1.05rem;
  margin-bottom: 22px;
  line-height: 1.75;
}

.about h2 {
  margin: 55px 0 22px;
  font-size: 2rem;
  letter-spacing: -0.02em;
}



/* =====================
   CTA
===================== */

.cta {
  background: #000;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.cta h2 {
  margin-bottom: 18px;
  font-size: 2.1rem;
}

.cta p {
  margin-bottom: 32px;
  opacity: 0.85;
}

.cta .btn-secondary {
  border-color: #fff;
  color: #fff;
}

.cta .btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* =====================
   FOOTER
===================== */

.footer {
  padding: 35px 0;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  opacity: 0.6;
}

.footer a:hover {
  opacity: 1;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 65vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .benefits,
  .target,
  .about,
  .cta {
    padding: 70px 0;
  }

}

/* =====================
   MOBILE MENU – FIXED
===================== */

/* hamburger – DOMYŚLNIE UKRYTY */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* mobile menu – DOMYŚLNIE UKRYTE */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* linki */
.mobile-nav a {
  padding: 18px 20px;
  border-top: 1px solid #eee;
  font-weight: 600;
}

/* AKTYWNE MENU */
.mobile-nav.active {
  display: flex;
}

/* =====================
   MOBILE ONLY
===================== */

@media (max-width: 768px) {

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

}
/* =====================
   3 KAFELKI W RZĘDZIE – TYLKO TA SEKCJA
===================== */

.offer-target .grid {
  grid-template-columns: repeat(3, 1fr);
}

/* tablet */
@media (max-width: 1024px) {
  .offer-target .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 640px) {
  .offer-target .grid {
    grid-template-columns: 1fr;
  }
}

.offer-cta {
  text-align: center;
  margin-top: 45px;
}

/* =====================
   TESTIMONIALS
===================== */

.testimonials {
  background: ffffffff !important;
  padding: 120px 0;
  display: flow-root; /* ← FIX COLLAPSING MARGINS */
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2rem;
}


/* delikatnie inny styl opinii */
.testimonial {
  font-style: italic;
  position: relative;
}

.testimonial p {
  line-height: 1.7;
}

/* opcjonalnie: cudzysłów dekoracyjny */
.testimonial::before {
  content: "“";
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: 15px;
  color: rgba(0,0,0,0.08);
}

/* =====================
   FORCE 4 KAFELKI – OFFER
===================== */

section.offer-4 .grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* tablet */
@media (max-width: 1200px) {
  section.offer-4 .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* mobile */
@media (max-width: 640px) {
  section.offer-4 .grid {
    grid-template-columns: 1fr !important;
  }
}

/* =====================
   GROUP INFO SECTION
===================== */

.group-info {
  background: #f7f7f7;      /* ← NAJWAŻNIEJSZE */
  padding: 110px 0;
}

.group-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.group-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.group-text .subtitle {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 420px;
}

.group-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-box {
  background: #fff;
  padding: 26px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-box h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.feature-box p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* responsive */
@media (max-width: 900px) {
  .group-info-grid {
    grid-template-columns: 1fr;
  }

  .group-features {
    grid-template-columns: 1fr;
  }
}

/* =====================
   KIDS – SIMPLE VERSION
===================== */

.kids-simple {
  padding: 110px 0;
  background: #f7f7f7;
}

.kids-simple-header {
  max-width: 620px;
  margin-bottom: 60px;
}

.kids-simple-header h2 {
  font-size: 2.1rem;
  margin-bottom: 15px;
}

.kids-simple-header p {
  font-size: 1.05rem;
  opacity: 0.8;
}

.kids-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.kids-card {
  border: 1px solid #eee;
  padding: 36px 32px;
  border-radius: 14px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.kids-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
}

.kids-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.6;
}

.kids-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.kids-hours {
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 0.95rem;
  opacity: 0.75;
}

/* mobile */
@media (max-width: 768px) {
  .kids-simple-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   INDIVIDUAL COURSES INFO
===================== */

.individual-info {
  background: #fff;
  padding: 110px 0;
  border-top: 1px solid #eee;
}

.individual-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.individual-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.individual-text .subtitle {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 420px;
}

.individual-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-box {
  background: #f7f7f7;
  padding: 26px 24px;
  border-radius: 14px;
}

.feature-box h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.feature-box p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* responsive */
@media (max-width: 900px) {
  .individual-grid {
    grid-template-columns: 1fr;
  }

  .individual-features {
    grid-template-columns: 1fr;
  }
}

.exams-section {
  background: #fff !important;
}

section.exams-section .grid .box {
  background: #fff !important;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10) !important;
  border-radius: 14px !important;
  padding: 40px 30px !important;
}

section.individual-info .individual-features .feature-box {
  background: #fff !important;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10) !important;
  border-radius: 14px !important;
  padding: 32px 28px !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

section.individual-info .individual-features .feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.14) !important;
}

.contact-section {
  padding: 110px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.contact-info h2 {
  font-size: 2.1rem;
  margin-bottom: 15px;
}

.contact-info p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.contact-details a {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-socials a {
  display: inline-block;
  margin-right: 15px;
  font-weight: 600;
  opacity: 0.7;
}

.contact-form {
  background: #f7f7f7;
  padding: 40px;
  border-radius: 14px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  position: relative;
}

.form-group .error {
  color: #c1121f;
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
}

input.error-input,
select.error-input {
  border-color: #c1121f;
  background: #fff5f5;
}

.form-success {
  background: #e8f8ee;
  border: 1px solid #b7e4c7;
  color: #1b4332;
  padding: 16px 18px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-weight: 600;
}
/* =====================
   COOKIE BANNER
===================== */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 960px;
  width: calc(100% - 40px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 600px;
}

.cookie-content a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

/* mobile */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* =====================
   MOBILE MENU – CHECKBOX
===================== */

.nav-toggle {
  display: none;
}

/* hamburger */
.nav-toggle__btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 100;
}

.nav-toggle__btn span {
  width: 26px;
  height: 2px;
  background: #000;
  display: block;
  transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 90px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: right 0.35s ease;
    z-index: 90;
  }

  /* show menu */
  .nav-toggle:checked ~ .nav {
    right: 0;
  }

  /* hamburger visible */
  .nav-toggle__btn {
    display: flex;
  }

  /* hide desktop elements */
  .lang-switch {
    display: none;
  }

  /* animate hamburger → X */
  .nav-toggle:checked + .nav-toggle__btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle:checked + .nav-toggle__btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle__btn span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* =====================
   LANGUAGE FLAGS
===================== */

.lang-flags {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* wspólne */
.flag {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.flag.active {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* =====================
   POLAND FLAG
===================== */

.flag-pl {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 50%,
    #dc143c 50%,
    #dc143c 100%
  );
}

/* =====================
   UNITED KINGDOM FLAG (UNION JACK)
===================== */

.flag-uk {
  background:
    linear-gradient(45deg,
      transparent 45%,
      #ffffff 45%,
      #ffffff 50%,
      transparent 50%
    ),
    linear-gradient(-45deg,
      transparent 45%,
      #ffffff 45%,
      #ffffff 50%,
      transparent 50%
    ),
    linear-gradient(
      to right,
      transparent 42%,
      #c8102e 42%,
      #c8102e 58%,
      transparent 58%
    ),
    linear-gradient(
      to bottom,
      transparent 42%,
      #c8102e 42%,
      #c8102e 58%,
      transparent 58%
    ),
    linear-gradient(
      to right,
      transparent 38%,
      #ffffff 38%,
      #ffffff 62%,
      transparent 62%
    ),
    linear-gradient(
      to bottom,
      transparent 38%,
      #ffffff 38%,
      #ffffff 62%,
      transparent 62%
    ),
    #012169;
}

/* =====================
   STICKY CTA
===================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  z-index: 999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

.sticky-cta__content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

.sticky-cta strong {
  font-weight: 700;
}

.sticky-cta .btn {
  white-space: nowrap;
}

.sticky-cta__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.7;
}

.sticky-cta__close:hover {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .sticky-cta__content {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}

/* =====================
   TESTIMONIALS SLIDER
===================== */

.testimonials {
  background: fffffff !important;
  padding: 110px 0;
  text-align: center;
  display: flow-root; /* ← FIX COLLAPSING MARGINS */
}

.testimonials h2 {
  margin-bottom: 60px;
  font-size: 2.2rem;
}

/* === SLIDER (STRZAŁKI NA ZEWNĄTRZ) === */
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* === VIEWPORT (MASKUJE SLIDES) === */
.testimonial-viewport {
  overflow: hidden;
}

/* === TRACK === */
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* === SINGLE SLIDE === */
.testimonial {
  flex: 0 0 100%;
  padding: 40px 45px;
  background: #f7f7f7;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial .author {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* === DOTS === */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s ease;
}

.testimonial-dots button.active {
  background: #000;
}

/* === ARROWS === */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.6rem;
  line-height: 1;
  transition: all 0.25s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}

.testimonial-arrow.prev {
  left: -70px;
}

.testimonial-arrow.next {
  right: -70px;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .testimonial {
    padding: 30px 25px;
  }

  .testimonial-arrow {
    display: none;
  }
}

/* =====================
   FAQ
===================== */

.faq {
  padding: 110px 0;
  background: #fff;
}

.faq h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.faq-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  opacity: 0.75;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ITEM */
.faq-item {
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s ease;
}

.faq-item.active {
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 28px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.25s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 28px 26px;
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq {
    padding: 80px 0;
  }

  .faq-question {
    padding: 22px 22px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
  }
}
.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.contact-socials a {
  font-size: 22px;
  color: #000;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-socials a:hover {
  transform: scale(1.15);
  color: #555;
}
.footer-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 14px;
  margin-top: 6px;
}

.footer-links a {
  color: inherit;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-separator {
  opacity: 0.4;
}



.seo-inline {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 0 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

