/*--------------------------------------------------------------
# Font Faces
--------------------------------------------------------------*/
@font-face {
  font-family: 'Monotype Corsiva';
  src: url('../fonts/Monotype Corsiva/Monotype-Corsiva-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Monotype Corsiva';
  src: url('../fonts/Monotype Corsiva/Monotype-Corsiva-Regular-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Monotype Corsiva';
  src: url('../fonts/Monotype Corsiva/Monotype-Corsiva-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Monotype Corsiva';
  src: url('../fonts/Monotype Corsiva/Monotype-Corsiva-Bold-Italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #072e1d; /* Dark green */
  --secondary-color: #186b4d; /* Lighter dark green */
  --accent-color: #85b79d; /* Light green accent */
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
}

body {
  font-family: "Gelasio", serif;
  color: #444444;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gelasio", serif;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

/* Add text justification to section paragraphs */
section p {
  text-align: justify;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

/* Section title paragraphs should remain centered */
.section-title p {
  text-align: center;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #919191;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--primary-color);
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 20px);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 1.75rem;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(230, 230, 230, 0);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: none;
}

#header.header-scrolled {
  /* Stan "jak było" po zejściu poniżej hero */
  background: #e6e6e6;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

#header.header-hero-blur {
  /* Efekt rozmycia tylko na sekcji hero */
  background: rgb(28 40 43 / 20%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#header:not(.header-scrolled) #navbar a,
#header:not(.header-scrolled) #navbar a:focus {
  color: #fff;
}

#header:not(.header-scrolled) .mobile-nav-toggle {
  color: #fff;
}

#header:not(.header-scrolled) .navbar > ul > li > a:before {
  background-color: #fff;
}

#header:not(.header-scrolled) .navbar a:hover,
#header:not(.header-scrolled) .navbar .active,
#header:not(.header-scrolled) .navbar .active:focus,
#header:not(.header-scrolled) .navbar li:hover > a {
  color: #fff;
}

#header .logo {
  margin: 0;
  padding: 0;
  line-height: 1;
}

#header .logo img {
  max-height: 60px;
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  text-transform: uppercase;
}

.navbar a i, .navbar a:focus i {
  font-size: 0.75rem;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--primary-color);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  margin-left: 30px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 5px;
  border-radius: 50%;
  color: var(--primary-color);
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
  background-color: var(--primary-color);
}

.social-icons a i {
  font-size: 1.125rem;
}

.mobile-nav-toggle {
  color: var(--primary-color);
  font-size: 1.75rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .social-icons {
    display: none !important;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: 0.3s;
  z-index: 999;
  padding: 10px 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--primary-color);
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 80px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 0.9375rem;
  color: var(--primary-color);
  border-bottom: 1px solid #f5f5f5;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--secondary-color);
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#hero .hero-container {
  width: 100%;
  height: 100%;
  position: relative;
}

#hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

#hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 50px 60px;
  z-index: 2;
}

#hero .hero-content h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 16px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  padding-bottom: 1.25rem;
}

#hero .hero-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
}

#hero .hero-content p {
  color: #fff;
  margin: 0 auto;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-align: center;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 3px 12px rgba(0, 0, 0, 0.4);
  max-width: 750px;
}

#hero .hero-signature {
  display: block;
  margin-top: 2rem;
  font-family: 'Monotype Corsiva', 'Palatino Linotype', cursive;
  font-size: 2.25rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.7),
    0 3px 10px rgba(0, 0, 0, 0.35);
}

/*--------------------------------------------------------------
# Kancelaria Section
--------------------------------------------------------------*/
.kancelaria {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faf9 0%, #f0f4f2 50%, #e8eeeb 100%);
}

.kancelaria-card {
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(7, 46, 29, 0.08);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.kancelaria-card:hover {
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 24px 64px rgba(7, 46, 29, 0.12);
}

.kancelaria-icon-col {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 48px 32px;
  position: relative;
}

.kancelaria-icon-col::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -1px;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(7, 46, 29, 0.12), transparent);
}

.kancelaria-icon-wrapper {
  position: relative;
}

.kancelaria-icon {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 4px 32px rgba(181, 148, 34, 0.3));
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.kancelaria-card:hover .kancelaria-icon {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 48px rgba(181, 148, 34, 0.45));
}

.kancelaria-content {
  padding: 48px 48px 48px 56px;
}

.kancelaria-label {
  display: inline-block;
  font-family: 'Monotype Corsiva', 'Palatino Linotype', cursive;
  font-size: 1.75rem;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.kancelaria-content h3 {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
  line-height: 1.35;
  margin-bottom: 0;
}

.kancelaria-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  margin: 20px 0 24px;
}

.kancelaria-lead {
  font-size: 1.05rem;
  color: #555;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
}

.kancelaria-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kancelaria-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.kancelaria-feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(7, 46, 29, 0.06), rgba(133, 183, 157, 0.15));
  transition: all 0.3s ease;
}

.kancelaria-feature:hover .kancelaria-feature-icon {
  background: linear-gradient(135deg, rgba(7, 46, 29, 0.06), rgba(133, 183, 157, 0.15));
}

.kancelaria-feature-icon i {
  font-size: 1.15rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.kancelaria-feature:hover .kancelaria-feature-icon i {
  color: var(--primary-color);
}

.kancelaria-feature p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .kancelaria-icon-col {
    min-height: 280px;
    padding: 40px 24px;
    border-radius: 20px 20px 0 0;
  }

  .kancelaria-icon-col::after {
    top: auto;
    right: 10%;
    left: 10%;
    bottom: -1px;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(181, 148, 34, 0.3), transparent);
  }

  .kancelaria-icon {
    max-width: 200px;
  }

  .kancelaria-content {
    padding: 36px 32px;
  }
}

@media (max-width: 576px) {
  .kancelaria {
    padding: 60px 0;
  }

  .kancelaria-card {
    border-radius: 16px;
  }

  .kancelaria-icon-col {
    min-height: 220px;
    padding: 32px 20px;
    border-radius: 16px 16px 0 0;
  }

  .kancelaria-icon {
    max-width: 160px;
  }

  .kancelaria-content {
    padding: 28px 24px;
  }

  .kancelaria-content h3 {
    font-size: 1.3rem;
  }

  .kancelaria-feature {
    flex-direction: column;
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Specjalizacje Section
--------------------------------------------------------------*/
.spec-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.spec-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px;
  background: #f6f9fe;
  border-radius: 12px;
  border: 1px solid rgba(7, 46, 29, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.spec-tile::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spec-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(7, 46, 29, 0.12);
  border-color: rgba(7, 46, 29, 0.15);
}

.spec-tile:hover::before {
  transform: scaleX(1);
}

.spec-tile-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7, 46, 29, 0.06), rgba(133, 183, 157, 0.15));
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

.spec-tile:hover .spec-tile-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.spec-tile-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color 0.35s ease;
}

.spec-tile:hover .spec-tile-icon i {
  color: #fff;
}

.spec-tile-label {
  font-family: "Gelasio", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1200px) {
  .spec-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .spec-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .spec-tile {
    padding: 22px 14px;
  }
}

@media (max-width: 480px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .spec-tile {
    padding: 18px 10px;
  }

  .spec-tile-icon {
    width: 48px;
    height: 48px;
  }

  .spec-tile-icon i {
    font-size: 1.25rem;
  }

  .spec-tile-label {
    font-size: 0.88rem;
  }
}

/*--------------------------------------------------------------
# Kontakt Section
--------------------------------------------------------------*/
/* Contact section texts should not be justified */
.kontakt .info p {
  text-align: left;
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: #555;
}

.kontakt .info .email p.email-value {
  margin-bottom: 0;
}

.kontakt .info .email-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.kontakt .info .email-link:hover,
.kontakt .info .email-link:focus-visible {
  text-decoration: underline;
}

.kontakt .info .email-link:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 3px;
  border-radius: 4px;
}

.kontakt .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.kontakt .info i {
  font-size: 1.25rem;
  color: var(--primary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: #f4f8f9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.kontakt .info h4 {
  padding: 0 0 0 60px;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.kontakt .info .email:hover i, .kontakt .info .address:hover i, .kontakt .info .phone:hover i, .kontakt .info .hours:hover i {
  background: var(--primary-color);
  color: #fff;
}

.kontakt .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.kontakt .php-email-form .form-group {
  padding-bottom: 8px;
}

.kontakt .php-email-form input, .kontakt .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 0.875rem;
  border-radius: 4px;
}

.kontakt .php-email-form input:focus, .kontakt .php-email-form textarea:focus {
  border-color: var(--primary-color);
}

.kontakt .php-email-form input {
  height: 44px;
}

.kontakt .php-email-form textarea {
  padding: 10px 12px;
}

.kontakt .php-email-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.kontakt .php-email-form button[type="submit"]:hover {
  background: var(--secondary-color);
}

.kontakt .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.kontakt .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.kontakt .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: var(--secondary-color);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--primary-color);
  color: #fff;
  font-size: 0.875rem;
}

#footer .footer-top {
  padding: 40px 0 0 0;
}

#footer .footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

#footer .footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

#footer .footer-logo {
  height: 70px;
  width: auto;
  flex-shrink: 0;
  border-radius: 4px;
}

#footer .footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 4px 0;
  white-space: nowrap;
}

#footer .footer-brand p {
  font-size: 1.125rem;
  font-family: 'Monotype Corsiva', 'Palatino Linotype', cursive;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: left;
  letter-spacing: 0.5px;
}

#footer .footer-right {
  text-align: right;
}

#footer .footer-right p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: right;
}

/* iOS Safari potrafi automatycznie zamieniać same liczby na linki typu tel: */
#footer a[href^="tel"],
#footer a[href^="tel"]:visited,
#footer a[href^="tel"]:hover {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  pointer-events: none;
  cursor: default;
}

@media (max-width: 768px) {
  #footer .footer-main {
    flex-direction: column;
    text-align: center;
  }

  #footer .footer-left {
    flex-direction: column;
    text-align: center;
  }

  #footer .footer-brand h3,
  #footer .footer-brand p {
    text-align: center;
  }

  #footer .footer-right {
    text-align: center;
  }

  #footer .footer-right p {
    text-align: center;
  }
}

#footer .footer-copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  padding-bottom: 20px;
}

#footer .footer-copyright strong {
  color: rgba(255, 255, 255, 0.75);
}

#footer .footer-copyright .developer-info {
  display: inline-block;
  margin-top: 2px;
}

#footer .footer-copyright .developer-info a {
  color: #b59422;
  font-weight: 700;
  transition: 0.3s;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

#footer .footer-copyright .developer-info a:hover {
  color: #ffc107;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  #header {
    padding: 12px 0;
  }

  #header .logo img {
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  #hero .hero-content {
    padding: 30px 25px;
  }

  #hero .hero-content h2 {
    font-size: 2.25rem;
    letter-spacing: 1.5px;
  }

  #hero .hero-content p {
    font-size: 1.125rem;
  }

  #hero .hero-signature {
    font-size: 1.75rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 576px) {
  #header .logo img {
    max-height: 40px;
  }

  #hero .hero-content {
    padding: 20px 15px;
    width: 92%;
  }

  #hero .hero-content h2 {
    font-size: 1.625rem;
    letter-spacing: 1px;
    padding-bottom: 0.875rem;
  }

  #hero .hero-content p {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  #hero .hero-signature {
    font-size: 1.5rem;
    margin-top: 1.125rem;
  }
}
