/* CSS RESET & NORMALIZATION */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F2F2EA;
  color: #233B18;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B77516;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #355D27;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.14;
}
h1 { font-size: 2.5rem; color: #B77516; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; color: #355D27; }
h4 { font-size: 1.1rem; }

/* CONTAINER & SECTION SPACING */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 800px;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HEADER & NAVIGATION */
header {
  background: #ffffff;
  box-shadow: 0 5px 16px 0 rgba(183, 117, 22, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  max-height: 54px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: none;
}
.main-nav a {
  font-size: 1rem;
  color: #355D27;
  padding: 8px 18px;
  border-radius: 22px;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FEEA95;
  color: #A05400;
}
.main-nav .cta-btn {
  background: #B77516;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
  border-radius: 28px;
  padding: 9px 30px;
  margin-left: 10px;
  box-shadow: 0 2px 6px 0 #B7751633;
  transition: background 0.23s, box-shadow 0.23s, transform 0.15s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #355D27;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #B77516;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #355D27;
  color: #FEEA95;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 96vw;
  max-width: 370px;
  background: #fffbe8;
  box-shadow: 8px 0 28px 0 #B7751633;
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(.54,.02,.21,.91);
  z-index: 999;
  padding: 28px 28px 24px 28px;
  gap: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  border: none;
  background: transparent;
  color: #B77516;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 16px;
  padding: 2px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFE1BC;
  color: #233B18;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #355D27;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 16px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FEEA95;
  color: #B77516;
}

/* Main responsive nav logic */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===== HERO SECTIONS ===== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 32px;
}
section:first-of-type {
  background: #ffe5cf;
  animation: bgPopIn 0.9s cubic-bezier(.51,1.45,.27,1) 1;
  box-shadow: 0 4px 20px 0 #B7751630;
}
@keyframes bgPopIn {
  0% { opacity: 0; transform: scale(0.96); }
  60% { opacity: 1; transform: scale(1.035); }
  100% { opacity: 1; transform: none; }
}

/* --- SECTION HEADINGS --- */
h2 {
  font-size: 2rem;
  color: #B77516;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

/* == FEATURE GRID / SERVICE CARDS LAYOUTS == */
.feature-grid, .service-list, .service-cards, .blog-list, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 8px;
  justify-content: space-between;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px 0 #355D2715;
  flex: 1 1 230px;
  min-width: 220px;
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform .17s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 26px 0 #B7751645;
  transform: translateY(-4px) scale(1.03);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

/* == SERVICE CARDS == */
.service-card {
  background: #FFFBE8;
  border-radius: 20px;
  box-shadow: 0 2px 10px #fcb15325;
  flex: 1 1 270px;
  min-width: 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 18px 18px 18px;
  margin-bottom: 20px;
  position: relative;
  border: 2.4px solid #FEEA95;
  transition: box-shadow 0.3s, border 0.19s, transform 0.13s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 7px 22px #B7751645;
  border-color: #B77516;
  transform: scale(1.028) rotate(-1deg);
}
.service-price {
  font-size: 1.04rem;
  color: #B77516;
  font-weight: 700;
  margin-top: 11px;
  margin-bottom: 7px;
}

.secondary-btn {
  display: inline-block;
  background: #355D27;
  color: #FFFBE8;
  border-radius: 20px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 #355D2720;
}
.secondary-btn:hover, .secondary-btn:focus {
  background: #B77516;
  color: #fff;
  box-shadow: 0 10px 35px #B775162F;
}

.cta-btn {
  background: #B77516;
  color: #fff;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  padding: 14px 40px;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 17px #FEEA9520;
  transition: background 0.22s, box-shadow 0.21s, transform 0.14s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #355D27;
  color: #FEEA95;
  box-shadow: 0 10px 36px #FEEA9545;
  transform: scale(1.04) skew(-2deg,-1deg);
}

/* == TESTIMONIALS == */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: #fffde0;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 #B7751628;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  border-left: 5px solid #B77516;
  color: #222;
}
.testimonial-card p {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-rating {
  display: flex;
  gap: 2px;
  align-items: center;
}
.testimonial-author {
  color: #355D27;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* == BLOG == */
.categories-filter {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 16px 0 14px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.categories-filter span {
  font-weight: 600;
  color: #355D27;
}
.categories-filter a {
  background: #fffbe8;
  color: #B77516;
  border-radius: 15px;
  padding: 3px 13px;
  font-size: 0.99rem;
  text-align: center;
  box-shadow: 0 1px 4px #B7751630;
  transition: background 0.16s, color 0.16s;
  font-weight: 700;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: #B77516;
  color: #fff;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.post-preview {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 8px #FEEA9520;
  flex: 1 1 260px;
  min-width: 250px;
  padding: 20px 16px 16px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: flex-start;
  transition: box-shadow 0.19s, transform 0.18s;
}
.post-preview:hover, .post-preview:focus-within {
  box-shadow: 0 4px 18px #B7751645;
  transform: translateY(-2px) scale(1.025);
}
.read-more {
  color: #B77516;
  background: #FFECB2;
  border-radius: 14px;
  font-weight: 800;
  padding: 6px 15px;
  align-self: flex-start;
  transition: background 0.17s, color 0.17s;
}
.read-more:hover, .read-more:focus {
  background: #B77516;
  color: #fff;
}

/* == TEAM == */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.team-bio {
  background: #FFFBE8;
  border-radius: 17px;
  padding: 20px 16px;
  box-shadow: 0 1px 8px #B7751615;
  flex: 1 1 260px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini-quote {
  font-size: 1.04rem;
  background: #FEEA95;
  color: #A05400;
  border-radius: 12px;
  padding: 6px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* == FAQ == */
.faq {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
}
.faq-item {
  background: #fffcf0;
  border-radius: 15px;
  padding: 18px 18px 13px 18px;
  box-shadow: 0 1px 7px #B7751620;
  transition: box-shadow 0.16s;
  font-family: 'Roboto', Arial, sans-serif;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 6px 15px #B7751622;
}
.faq-item h3 {
  color: #B77516;
}

/* == ADDRESS/CONTACT BOXES == */
.address-box, .info-block, .map-embed {
  background: #FFFBE8;
  border-radius: 14px;
  box-shadow: 0 1px 6px #B7751611;
  padding: 18px 15px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.info-block {
  background: #FFECB2;
  color: #355D27;
}

/* == FOOTER == */
footer {
  background: #355D27;
  color: #fffbe8;
  padding-top: 38px;
  padding-bottom: 28px;
  margin-top: 34px;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -3px 21px 0 #B7751617;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 7px;
}
.footer-menu a {
  color: #FFD97F;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.16s, text-decoration 0.13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.brand-slogan {
  margin-top: 6px;
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.14rem;
  color: #FEEA95;
}
.footer-socials {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.footer-socials a {
  background: #FEEA95;
  border-radius: 50%;
  padding: 7px;
  transition: background 0.2s, transform 0.12s;
  display: flex;
}
.footer-socials a:hover, .footer-socials a:focus {
  background: #B77516;
  transform: scale(1.10);
}
.footer-socials img {
  height: 24px;
  width: 24px;
}

/* == COOKIE CONSENT BANNER == */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe8;
  color: #355D27;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 22px 7vw 22px 7vw;
  box-shadow: 0 -2px 15px #b7751620;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  z-index: 2002;
  opacity: 1;
  transform: translateY(0%);
  transition: opacity .29s, transform .29s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  background: #FFE1BC;
  color: #B77516;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 700;
  padding: 7px 17px;
  cursor: pointer;
  box-shadow: 0 2px 6px #B7751626;
  margin-left: 2px;
  transition: background .17s, color .17s, transform .12s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #B77516;
  color: #fff;
  transform: scale(1.08);
}
.cookie-btn.accept {
  background: #355D27;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #B77516;
  color: #fff;
}
/* = Cookie Modal Styles = */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #355D2777;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2150;
  opacity: 1;
  transition: opacity .21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fffbe8;
  padding: 38px 28px 28px 28px;
  border-radius: 27px;
  box-shadow: 0 7px 36px #B7751670;
  min-width: 335px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  color: #355D27;
}
.cookie-modal-content h3 {
  color: #B77516;
  margin-bottom: 8px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.cookie-modal-category label {
  font-weight: 700;
  margin-left: 1px;
}
.cookie-switch {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 14px;
  background: #FEEA95;
  outline: none;
  transition: background 0.19s;
  position: relative;
  margin-left: 5px;
  margin-right: 2px;
}
.cookie-switch:checked {
  background: #B77516;
}
.cookie-switch:disabled {
  background: #dedede;
}
.cookie-switch::after {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2.5px;
  left: 3px;
  transition: left .17s;
  box-shadow: 0 1px 5px #B7751644;
}
.cookie-switch:checked::after {
  left: 18px;
}
.cookie-modal-btns {
  display: flex;
  gap: 15px;
  margin-top: 12px;
}
.cookie-modal-close {
  color: #B77516;
  font-size: 1.7rem;
  position: absolute;
  right: 13px;
  top: 14px;
  cursor: pointer;
  border: none;
  background: transparent;
  border-radius: 7px;
  transition: background .14s, color .14s;
  padding: 2px 8px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fff;
  background: #B77516;
}

/* == UTILITY FLEX LAYOUTS (MANDATORY CLASSES) == */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* == OTHER LAYOUTS == */
.next-steps ul {
  list-style: disc;
  padding-left: 1.7em;
  margin-bottom: 1em;
}

/* = RESPONSIVE DESIGN (MOBILE FIRST) = */
@media (max-width: 820px) {
  .container {
    padding: 0 12px;
  }
  section {
    margin-bottom: 33px;
    padding: 27px 8px;
    border-radius: 24px;
  }
  .feature-grid, .service-list, .service-cards, .blog-list, .team-list, .testimonial-list {
    gap: 16px;
  }
  .footer-menu {
    gap: 12px;
    font-size: .99rem;
  }
  .footer-socials {
    gap: 13px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 19px 3vw;
    font-size: 1rem;
  }

  .cookie-modal-content {
    min-width: unset;
    width: 98vw;
    padding: 27px 8px 27px 8px;
  }
}
@media (max-width: 680px) {
  h1 {font-size:2rem;}
  h2 {font-size:1.25rem;}
  .main-nav {
    font-size: 0.98rem;
  }
  .feature, .service-card, .post-preview, .team-bio, .testimonial-card {
    min-width: 95vw;
    max-width: 97vw;
  }
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .brand-slogan {font-size:1rem}
  .content-wrapper {
    padding: 7px 0;
    gap: 11px;
  }
}
@media (max-width: 768px) {
  .feature-grid,
  .service-list,
  .service-cards,
  .blog-list,
  .team-list,
  .testimonial-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .testimonial-card {
    max-width: 98vw;
    flex: 1 1 100%;
    border-left: 5px solid #B77516;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
/* Hide cookie modal on print */
@media print {
  .cookie-banner, .cookie-modal { display: none !important; }
}

/* == MICRO-ANIMATIONS == */
.feature img, .service-card h3, .testimonial-card .testimonial-rating, .logo img {
  transition: transform 0.21s cubic-bezier(.5,1.65,.3,1.1);
}
.feature:hover img, .service-card:hover h3, .testimonial-card:hover .testimonial-rating, .logo img:hover {
  transform: scale(1.16) rotate(-3deg)
}
.post-preview h3 {
  transition: color .18s, transform .15s;
}
.post-preview:hover h3 {
  color: #B77516;
  transform: scale(1.04) skew(-0.5deg,1deg);
}

/* == AUTOFILL & FORM COMPAT == */
input, textarea, select {
  font-family: inherit;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #B7751630;
  font-size: 1rem;
  margin-bottom: 18px;
  background: #FFFBF2;
  transition: border .16s, background .13s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 2px solid #B77516;
  background: #FFFBE8;
}

/* == MISCELLANEOUS == */
::-webkit-scrollbar {
  width: 10px;
  background: #FFE1BC;
}
::-webkit-scrollbar-thumb {
  background: #B77516;
  border-radius: 7px;
}
::selection {
  background: #FEEA95;
  color: #355D27;
}

/* PLAYFUL FONT Weights and Bouncy Spacing */
h1, h2, .cta-btn, .secondary-btn, .feature h3, .service-card h3, .post-preview h3 {
  letter-spacing: 0.02em;
  font-weight: 900;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  line-height: 1.09;
}

body, button, .feature p, .service-card p, .testimonials p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* ENERGETIC HIGHLIGHT-- playful highlights on brand accent */
.feature h3, .service-card h3, .post-preview h3, .mini-quote {
  background: #FEEA95;
  border-radius: 10px;
  display: inline-block;
  padding: 2px 7px 2px 7px;
  color: #B77516;
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 2px 7px #B7751620;
}

/* Animated underline for playful links */
a:not(.cta-btn):not(.secondary-btn) {
  position: relative;
}
a:not(.cta-btn):not(.secondary-btn):after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 0;
  transition: width .21s cubic-bezier(.64,1.51,.28,1.01), left 0.23s;
  border-bottom: 2.4px solid #B77516;
}
a:not(.cta-btn):not(.secondary-btn):hover:after, a:not(.cta-btn):not(.secondary-btn):focus:after {
  left: 21%;
  width: 59%;
}

/* BOUNCY CARD SHADOWS ON HOVER FOR PLAYFUL FEEL */
.card:hover, .card:focus-within, .feature:hover, .service-card:hover, .post-preview:hover, .testimonial-card:hover {
  box-shadow: 0 9px 32px #fad0763b;
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
}

/* Responsive strong visual hierarchy (hero) */
@media (max-width:520px) {
  h1 { font-size: 1.3rem; }
  .cta-btn { font-size: 1.02rem; padding: 12px 20px;}
}
