@font-face {
  font-family: 'BookmanJFPro';
  src: url('fonts/BookmanJFPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'LT Cushion Light';
  src: url('fonts/LTCushion-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  background: #fff;
  color: #181818;
  line-height: 1.6;
}

/* Announcement Bar */
.announcement-bar {
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 0.6em 0;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  position: relative;
}

.announcement-bar a {
  color: inherit;
  text-decoration: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.announcement-bar::before,
.announcement-bar::after {
  content: "🩷";
  margin: 0 0.5em;
  display: inline-block;
  animation: pulse 1.5s ease-in-out infinite;
}

.announcement-bar::after {
  animation-delay: 0.75s;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 5vw 1.5em 5vw;
  background: #f7f5f5;
}

.logo {
  display: block;
}

nav {
  display: flex;
  gap: 2.5em;
}

nav a {
  text-decoration: none;
  color: #181818;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 1.1em;
  transition: color 0.2s;
}

nav a:hover {
  color: #c3b24f;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3em 5vw 2em 5vw;
  gap: 3em;
  background: #f7f5f5;
}

.hero-content {
  flex: 1;
  max-width: 50%;
}

.hero-content h3 {
  font-family: 'BookmanJFPro', serif;
  font-size: 0.95em;
  letter-spacing: 0.15em;
  color: #888;
  font-weight: 700;
  margin: 0 0 1em 0;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: 'LT Cushion Light', serif;
  font-size: 2.4em;
  font-weight: 400;
  margin: 0 0 0.8em 0;
  line-height: 1.2;
  color: #181818;
}

.hero-content p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 2em;
  line-height: 1.6;
}

.cta-btn {
  background: #c3b24f;
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.9em 2.2em;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
}

.cta-btn:hover {
  background: #5c7482;
}

.hero-cta-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
  margin-bottom: 2em;
}

.hero-illustration {
  max-width: 160px;
  margin-left: auto;
  animation: wiggle 1s ease-in-out infinite;
}

.hero-image {
  flex: 1;
  max-width: 400px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* Divider */
.divider {
  width: 100%;
  height: 75px;
  background: url(img/checker_bg.png) left repeat-x;
}

/* Featured Section */
.section-featured {
  background: #5c7482;
  color: #fff;
  padding: 4em 5vw;
  text-align: center;
}

.section-featured h4 {
  font-size: 1em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.8em;
  color: #e6e6e6;
}

.section-featured h2 {
  font-family: 'LT Cushion Light', serif;
  font-size: 2.2em;
  font-weight: 400;
  margin-bottom: 1em;
  line-height: 1.3;
}

.section-featured p {
  font-size: 1.15em;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 2.5em auto;
  color: #e6e6e6;
}

.learn-btn {
  background: #fff;
  color: #5c7482;
  border: none;
  border-radius: 2em;
  padding: 0.9em 2.5em;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.learn-btn:hover {
  background: #c3b24f;
  color: #fff;
}

/* Time Together Section */
.section-time-together {
  background: #f7f5f5;
  padding: 0;
}

.time-together-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 500px;
}

.time-together-image {
  flex: 1;
  overflow: hidden;
}

.time-together-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.time-together-content {
  flex: 1;
  padding: 3.5em 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f7f5f5;
}

.time-together-content h4 {
  font-size: 0.95em;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #888;
  font-weight: 700;
  margin-bottom: 0.8em;
}

.time-together-content h2 {
  font-family: 'LT Cushion Light', serif;
  font-size: 1.8em;
  font-weight: 400;
  margin-bottom: 1em;
  line-height: 1.3;
}

.time-together-content p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.time-together-content ul {
  list-style: none;
  margin: 0 0 2em 0;
}

.time-together-content li {
  font-size: 1.05em;
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
  color: #444;
}

.star-bullet {
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.8em;
  flex-shrink: 0;
}

.time-together-content .hero-illustration {
  margin-top: 1.5em;
}

/* Patterned Background */
.patterned-bg {
  background: url(img/plaid_bg.png) top left repeat;
  min-height: 655px;
  padding: 95px 95px 75px;
  position: relative;
}

	/*
.patterned-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><text x="20" y="25" font-size="16" text-anchor="middle" fill="%23333">✦</text></svg>') repeat;
  opacity: 0.15;
}
	*/

/* Carousel radio inputs — hidden but functional */
.tc-radio {
  display: none;
}

.testimonial-carousel {
  position: relative;
}

/* Only the active slide is visible */
.testimonial-slides .testimonial-card {
  display: none;
}
#tc1:checked ~ .testimonial-slides .testimonial-card:nth-child(1),
#tc2:checked ~ .testimonial-slides .testimonial-card:nth-child(2),
#tc3:checked ~ .testimonial-slides .testimonial-card:nth-child(3) {
  display: block;
}

/* Navigation dots */
.testimonial-dots {
  text-align: center;
  margin-top: 2em;
  padding-bottom: 0.5em;
}

.testimonial-dots label {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd;
  border: 2px solid #ddd;
  cursor: pointer;
  margin: 0 6px;
  transition: background 0.25s, border-color 0.25s;
}

#tc1:checked ~ .testimonial-slides .testimonial-dots label[for="tc1"],
#tc2:checked ~ .testimonial-slides .testimonial-dots label[for="tc2"],
#tc3:checked ~ .testimonial-slides .testimonial-dots label[for="tc3"] {
  background: #c3b24f;
  border-color: #c3b24f;
}

.testimonial-card {
  background: #fff;
  min-height: 464px;
  max-width: 750px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  padding: 3em 2.5em 2.5em 2.5em;
  position: relative;
  z-index: 1;
}

.testimonial-card blockquote {
  font-size: 1.6em;
  font-style: italic;
  color: #181818;
  margin: 0 0 1.5em 0;
  line-height: 1.3;
}

.testimonial-meta {
  display: flex;
  align-items: flex-start;
  gap: 1.8em;
}

.testimonial-face {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-text {
  flex: 1;
}

.testimonial-text p {
  font-size: 1.05em;
  color: #444;
  margin: 0 0 1em 0;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 1em;
  color: #888;
  font-style: italic;
}

/* About Section */
.about-section {
  background: #d8e7e6;
  padding: 4em 5vw;
}

.about-page {
  padding-top: 2em;
  padding-bottom: 5em;
  min-height: calc(100vh - 200px);
  background: #f7f5f5;
}

.about-inner {
  display: flex;
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
  gap: 4em;
}

.about-photos {
  flex: 1;
  position: relative;
  min-height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-page .about-inner {
  flex-direction: row-reverse;
  align-items: flex-start;
}

.about-page .about-text {
  padding-left: 10px;
}

.about-hero-photo {
  max-width: 95%;
  margin-top: 4em;
  height: auto;
  display: block;
}

.about-polaroid {
  width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border-radius: 8px;
  position: absolute;
  background: #fff;
  /* padding: 15px 15px 45px 15px; */
}

.about-polaroid img {
  width: 100%;
  height: auto;
  display: block;
}

.polaroid1 { 
  left: 0; 
  top: 0; 
  z-index: 2; 
  transform: rotate(-8deg);
}

.polaroid2 { 
  left: 100px; 
  top: 60px; 
  z-index: 1; 
  transform: rotate(12deg);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-family: 'BookmanJFPro', serif;
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: 0.8em;
  color: #181818;
}

.about-text p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 1.8em;
  line-height: 1.6;
}

.about-btn {
  display: inline-block;
  background: none;
  color: #181818;
  border: none;
  border-bottom: 2px solid #c3b24f;
  font-weight: 700;
  font-size: 1.1em;
  padding: 0.3em 0;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.about-btn:hover {
  color: #c3b24f;
}

/* Readings Page */
.readings-intro {
  background: #f7f5f5;
  padding: 5em 5vw;
  display: flex;
  justify-content: center;
}

.readings-intro-inner {
  max-width: 800px;
  width: 100%;
}

.readings-intro-inner h1 {
  font-family: 'LT Cushion Light', serif;
  font-size: 2.8em;
  font-weight: 400;
  margin-bottom: 0.6em;
  line-height: 1.2;
  color: #181818;
}

.readings-intro-inner p {
  font-size: 1.15em;
  color: #444;
  line-height: 1.7;
  max-width: 680px;
}

.readings-section {
  display: flex;
  min-height: 480px;
}

.readings-img-side {
  flex: 1;
  background: #d8e7e6;
  display: flex;
}

.readings-text-side {
  flex: 1;
  background: #f7f5f5;
  display: flex;
}

.readings-section.image-left .readings-img-side {
  justify-content: flex-end;
}

.readings-section.image-left .readings-text-side {
  justify-content: flex-start;
}

.readings-section.image-right .readings-img-side {
  justify-content: flex-start;
}

.readings-section.image-right .readings-text-side {
  justify-content: flex-end;
}

.readings-img-inner {
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  padding: 20px;
}

.readings-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.readings-text-inner {
  max-width: 600px;
  width: 100%;
  padding: 3.5em 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.readings-text-inner h2 {
  font-family: 'LT Cushion Light', serif;
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 0.8em;
  line-height: 1.3;
  color: #181818;
}

.readings-text-inner p {
  font-size: 1.05em;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.2em;
}

.readings-text-inner .cta-btn {
  align-self: flex-start;
  margin-top: 0.8em;
}

.readings-text-inner ul {
  list-style: none;
  margin: 0 0 2em 0;
}

.readings-text-inner li {
  font-size: 1.05em;
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
  color: #444;
}

/* Contact Section */
.contact-section {
  background: #f7f5f5;
  padding: 5em 5vw;
  min-height: calc(100vh - 300px);
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px;
  background: #5c7482;
}

.contact-intro {
  margin-bottom: 2.5em;
}

.contact-intro h1 {
  font-family: 'LT Cushion Light', serif;
  font-size: 2.2em;
  font-weight: 400;
  margin-bottom: 0.4em;
  color: #f7f5f5;
}

.contact-intro p {
  font-size: 1.05em;
  color: #f7f5f5;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.contact-form-group label {
  font-weight: 700;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  color: #d8e7e6;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  color: #181818;
}

.form-group input,
.form-group textarea,
.contact-form-group input,
.contact-form-group textarea {
  font-family: 'Hanken Grotesk', Arial, sans-serif;
  font-size: 1em;
  color: #181818;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 0.75em 1em;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #c3b24f;
}

.contact-form .cta-btn {
  align-self: flex-start;
}

.contact-form .cta-btn:hover {
  background: #d8e7e6;
  color: #5c7482;
}

/* Course Section */
.course-section {
  background: #fff;
  padding: 4em 5vw;
  text-align: center;
}

.course-section h2 {
  font-family: 'LT Cushion Light', serif;
  font-size: 1.8em;
  font-weight: 400;
  margin-bottom: 0.6em;
  color: #181818;
}

.course-subtitle {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 3em;
  font-style: italic;
}

.course-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3em;
  margin-bottom: 3em;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 0 auto;
  display: block;
}

.feature h4 {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 0.8em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #181818;
}

.feature p {
  font-size: 1em;
  color: #444;
  line-height: 1.5;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(24, 24, 24, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1em;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 18px;
  padding: 2.5em 2.5em 2em;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.modal-box h2 {
  font-family: 'LT Cushion Light', serif;
  font-size: 1.8em;
  font-weight: 400;
  margin-bottom: 0.25em;
  color: #181818;
}

.modal-box p {
  color: #444;
  margin-bottom: 1.5em;
  font-size: 1em;
}

.modal-close {
  position: absolute;
  top: 1em;
  right: 1.2em;
  background: none;
  border: none;
  font-size: 1.6em;
  line-height: 1;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #181818;
}

.modal-signup-form .signup-fields {
  flex-direction: column;
  gap: 0.8em;
}

.modal-signup-form .signup-fields input {
  width: 100%;
}

.modal-signup-form .signup-fields button {
  width: 100%;
}

/* Footer */
.footer-signup {
  position: relative;
  background: #181818;
  color: #fff;
  padding: 4em 5vw 2em 5vw;
  overflow: hidden;
}

.footer-overlay {
  background: url('img/footer_bg.jpg') center/cover no-repeat;
  opacity: 0.3;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3em;
  margin-bottom: 2em;
}

.signup-form {
  max-width: 600px;
  flex: 1;
  margin: 0;
  text-align: left;
}

.signup-form label {
  display: block;
  font-size: 1.3em;
  font-weight: 500;
  margin-bottom: 1.5em;
}

.signup-fields {
  display: flex;
  gap: 1em;
  align-items: center;
}

.signup-fields input {
  padding: 0.9em 1.2em;
  border-radius: 2em;
  border: none;
  font-size: 1em;
  flex: 1;
}

.signup-fields button {
  padding: 0.9em 2.5em;
  border-radius: 2em;
  border: none;
  background: #c3b24f;
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.signup-fields button:hover {
  background: #5c7482;
}

.footer-social-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #f7f5f5;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.75em;
}

.footer-social {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 1.2em;
  margin-bottom: 1em;
}

.footer-social a img {
  height: 48px;
  width: 48px;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-social a:hover img {
  opacity: 1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  font-size: 0.95em;
  color: #ccc;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: underline;
}

.footer-logo {
  height: 250px;
  opacity: 0.8;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .announcement-bar {
    font-size: 0.8em;
    padding: 0.4em 0;
  }
  
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5em 1em 1em 1em;
  }
  
  .logo {
    margin-bottom: 0.8em;
  }
  
  nav {
    gap: 1.5em;
    width: 100%;
    justify-content: flex-start;
  }
  
  nav a {
    font-size: 1em;
  }
  
  .hero {
    flex-direction: column;
    padding: 2em 1em;
    gap: 1.5em;
  }
  
  .hero-image {
    order: -1;
    max-width: 100%;
    border-radius: 20px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.6em;
    margin-bottom: 0.8em;
  }
  
  .hero-content h3 {
    font-size: 0.85em;
  }
  
  .hero-content p {
    font-size: 1em;
  }
  
  .cta-btn {
    width: 90%;
    font-size: 1em;
    padding: 1em 0;
  }
  
  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }

  .hero-illustration {
    max-width: 160px;
    margin: auto;
  }
  
  .section-featured {
    padding: 3em 1em;
  }
  
  .section-featured h2 {
    font-size: 1.4em;
  }
  
  .section-featured p {
    font-size: 1em;
  }
  
  .learn-btn {
    width: 100%;
    padding: 1em;
  }
  
  .time-together-inner {
    flex-direction: column;
    min-height: 0;
  }
  
  .time-together-image img {
    border-radius: 0;
  }
  
  .time-together-content {
    padding: 2em 1em;
    text-align: center;
  }
  
  .time-together-content h2 {
    font-size: 1.3em;
  }
  
  .time-together-content ul {
    text-align: left;
    display: inline-block;
  }
  
  .patterned-bg {
    padding: 60px 15px;
  }

  .testimonial-dots label {
    width: 9px;
    height: 9px;
  }
  
  .testimonial-card {
    padding: 2em 1em;
    margin: 0;
  }
  
  .testimonial-card blockquote {
    font-size: 1.2em;
  }
  
  .testimonial-meta {
    flex-direction: column;
    gap: 1em;
    text-align: center;
  }
  
  .about-section {
    padding: 3em 1em;
  }
  
  .about-inner {
    flex-direction: column;
    gap: 2em;
    text-align: center;
  }

  .about-page .about-inner {
    flex-direction: column;
  }

  .about-page .about-photos {
    order: -1;
  }
  
  .about-hero-photo {
    max-width: 95%;
    margin-top: 0px;
    height: auto;
    display: block;
  }

  .about-page .about-btn {
    padding-left: 20px;
    padding-right: 20px;
  }

  .readings-intro {
    padding: 3em 1em;
  }

  .readings-intro-inner h1 {
    font-size: 1.8em;
  }

  .readings-intro-inner p {
    font-size: 1em;
  }

  .readings-section {
    flex-direction: column;
    min-height: 0;
  }

  .readings-img-side,
  .readings-text-side {
    flex: none;
    width: 100%;
    justify-content: flex-start !important;
  }

  .readings-section.image-right .readings-img-side {
    order: -1;
  }

  .readings-img-inner,
  .readings-text-inner {
    max-width: 100%;
  }

  .readings-img-inner img {
    max-height: 280px;
    object-fit: cover;
  }

  .readings-text-inner {
    padding: 2em 1em;
  }

  .readings-text-inner h2 {
    font-size: 1.4em;
  }

  .readings-text-inner .cta-btn {
    align-self: stretch;
    text-align: center;
    width: 100%;
  }

  .contact-section {
    padding: 2em 1em;
  }

  .contact-form .cta-btn {
    align-self: stretch;
    text-align: center;
	width: 100%;
  }
  
  .about-photos {
    position: relative;
    min-height: 200px;
  }
  
  .about-text p {
    text-align: left;
  }

  
  .about-polaroid {
    position: static;
    /* margin: 0 0.5em;
    transform: none !important; */
    width: 120px;
    display: inline-block;
  }
  
  .polaroid1, .polaroid2 {
    position: static;
    left: auto;
    top: auto;
  }
  
  .course-section {
    padding: 3em 1em;
  }
  
  .course-section h2 {
    font-size: 1.3em;
  }
  
  .course-features {
    grid-template-columns: 1fr;
    gap: 2.5em;
    margin-bottom: 2em;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .footer-signup {
    padding: 3em 1em 1.5em 1em;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .signup-form {
    text-align: center;
    width: 100%;
  }
  
  .signup-form label {
    font-size: 1.1em;
  }
  
  .signup-fields {
    flex-direction: column;
    gap: 1em;
  }
  
  .signup-fields input,
  .signup-fields button {
    width: 100%;
    padding: 1em;
  }
  
  .footer-logo {
    height: 250px;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }
}
