@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');

:root {
  --primary: hsl(349, 52%, 60%);
  --secondary: hsl(355, 41%, 80%);
  --accent: hsl(341, 71%, 75%);
  --bg-dark: #101216;
  --bg-panel: #1a1d23;
}

body{
  background-color: var(--bg-dark);
  color: #f5f5f5;
  font-family: 'Merriweather', serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Lato', sans-serif;
}
.navbar{
  background-color: var(--bg-panel);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #f5f5f5;
}
.navbar-brand:hover{
  color: var(--accent);
}
.navbar-nav .nav-link{
  color: #f5f5f5;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
}
.navbar-nav .nav-link:hover{
  color: var(--primary);
}
.navbar-toggler{
  border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon{
  filter: invert(1);
}



  .thankyou-section {
    font-family: 'Merriweather', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(355, 41%, 96%) 0%, hsl(341, 71%, 92%) 100%);
    padding: 3rem 1rem;
  }

  .thankyou-section h1,
  .thankyou-section h2,
  .thankyou-section h3 {
    font-family: 'Lato', sans-serif;
  }

  .thankyou-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 1rem 3rem rgba(200, 80, 110, 0.15);
    padding: 3rem 2rem;
    max-width: 620px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .thankyou-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: hsl(341, 71%, 75%);
    opacity: 0.15;
    border-radius: 50%;
  }

  .thankyou-card::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 180px;
    height: 180px;
    background: hsl(349, 52%, 60%);
    opacity: 0.12;
    border-radius: 50%;
  }

  .success-icon-wrapper {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(349, 52%, 60%), hsl(341, 71%, 75%));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px hsla(349, 52%, 60%, 0.35);
    position: relative;
    z-index: 1;
    animation: popIn 0.5s ease-out;
  }

  .success-icon-wrapper svg {
    width: 48px;
    height: 48px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
  }

  .thankyou-heading {
    font-weight: 900;
    color: hsl(349, 52%, 45%);
    margin-bottom: 1rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
  }

  .thankyou-text {
    color: #5a4a4d;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.9rem;
    position: relative;
    z-index: 1;
  }

  .thankyou-note {
    background: hsl(355, 41%, 95%);
    border-left: 4px solid hsl(349, 52%, 60%);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    text-align: left;
    font-size: 0.95rem;
    color: #6a5558;
    position: relative;
    z-index: 1;
  }

  .thankyou-note i {
    color: hsl(349, 52%, 55%);
    margin-right: 0.5rem;
  }

  .btn-home {
    background: hsl(349, 52%, 60%);
    border: none;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px hsla(349, 52%, 60%, 0.4);
  }

  .btn-home:hover {
    background: hsl(349, 52%, 52%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px hsla(349, 52%, 60%, 0.5);
  }

  .thankyou-divider {
    width: 60px;
    height: 4px;
    background: hsl(341, 71%, 75%);
    border-radius: 2px;
    margin: 1.25rem auto;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2.25rem 1.5rem;
    }
    .thankyou-heading {
      font-size: 1.6rem;
    }
    .success-icon-wrapper {
      width: 80px;
      height: 80px;
    }
    .success-icon-wrapper svg {
      width: 40px;
      height: 40px;
    }
  }

footer {
    background: #101216;
    color: #e8e6e3;
    font-family: 'Merriweather', serif;
    border-top: 1px solid hsl(355, 41%, 80%, 0.2);
    padding: 64px 0 24px;
  }
  footer h5 {
    font-family: 'Lato', sans-serif;
    color: hsl(349, 52%, 60%);
    margin-bottom: 18px;
    font-weight: 700;
  }
  footer p, footer li, footer a {
    color: #cfcdc9;
    font-size: 0.95rem;
  }
  footer a {
    text-decoration: none;
    transition: color 0.2s ease;
  }
  footer a:hover {
    color: hsl(341, 71%, 75%);
  }
  footer ul {
    list-style: none;
    padding-left: 0;
  }
  footer ul li {
    margin-bottom: 10px;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid hsl(355, 41%, 80%, 0.4);
    color: #e8e6e3;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.2s ease;
  }
  .footer-social a:hover {
    background: hsl(349, 52%, 60%);
    border-color: hsl(349, 52%, 60%);
    color: #101216;
  }
  .footer-bottom {
    border-top: 1px solid hsl(355, 41%, 80%, 0.15);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #a9a7a3;
  }
  .footer-bottom a {
    color: #a9a7a3;
  }
  .footer-bottom a:hover {
    color: hsl(341, 71%, 75%);
  }

  #consentPanel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #16181d;
    border-top: 2px solid hsl(349, 52%, 60%);
    color: #e8e6e3;
    font-family: 'Merriweather', serif;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  }
  #consentPanel h5 {
    font-family: 'Lato', sans-serif;
    color: hsl(349, 52%, 60%);
    font-weight: 700;
    font-size: 1.1rem;
  }
  #consentPanel p, #consentPanel li {
    font-size: 0.85rem;
    color: #cfcdc9;
  }
  #consentPanel ul {
    padding-left: 18px;
    margin-bottom: 12px;
  }
  .cookie-btn {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    border: none;
    padding: 10px 18px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 0;
  }
  .btn-accept-all {
    background: hsl(349, 52%, 60%);
    color: #101216;
  }
  .btn-accept-all:hover {
    background: hsl(341, 71%, 75%);
    color: #101216;
  }
  .btn-reject {
    background: transparent;
    color: #e8e6e3;
    border: 1px solid hsl(355, 41%, 80%);
  }
  .btn-reject:hover {
    background: hsl(355, 41%, 80%);
    color: #101216;
  }
  .btn-manage {
    color: hsl(341, 71%, 75%);
    font-size: 0.85rem;
    text-decoration: underline;
  }
  .btn-manage:hover {
    color: hsl(349, 52%, 60%);
  }



.hero-theater {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(16,18,22,0.75) 0%, rgba(16,18,22,0.55) 40%, rgba(16,18,22,0.92) 100%), url('../images/headline.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  color: #f5f5f5;
}

.hero-theater .hero-inner {
  max-width: 780px;
  padding: 0 1.5rem;
}

.hero-theater .eyebrow {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: hsl(341, 71%, 75%);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-theater h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: #f5f5f5;
  line-height: 1.1;
  margin-top: 1rem;
}

.hero-theater h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: hsl(355, 41%, 80%);
  margin-top: 1rem;
}

.hero-theater p.description {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: #e5e5e5;
  margin-top: 1.5rem;
  line-height: 1.8;
}

.btn-hero {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  background-color: hsl(349, 52%, 60%);
  color: #101216;
  border: 2px solid hsl(349, 52%, 60%);
  padding: 0.9rem 2.3rem;
  font-size: 1.05rem;
  border-radius: 0;
  margin-top: 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-hero:hover {
  background-color: transparent;
  color: #f5f5f5;
  border-color: #f5f5f5;
  transform: translateY(-2px);
}

#cases {
  background: #14161b;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #f5f5f5;
}
#cases h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #f5f5f5;
}
#cases .lead-text {
  color: hsl(355, 41%, 80%);
  max-width: 720px;
}
#cases .case-card {
  background: #1a1d23;
  border: 1px solid #2c2f36;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#cases .case-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #101216;
}
#cases .case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#cases .case-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#cases .case-badge {
  display: inline-block;
  background: hsl(341, 71%, 75%);
  color: #1a1d23;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  margin-bottom: 12px;
  width: fit-content;
}
#cases .case-body h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  color: #f5f5f5;
  margin-bottom: 10px;
}
#cases .case-body p {
  color: #c9ccd1;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}
#cases .case-link {
  color: hsl(349, 52%, 60%);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid hsl(349, 52%, 60%);
  padding: 8px 18px;
  margin-top: 16px;
  width: fit-content;
  background: transparent;
}
#cases .case-link:hover {
  background: hsl(349, 52%, 60%);
  color: #101216;
}
#cases .modal-content {
  background: #1a1d23;
  border: 1px solid #2c2f36;
  border-radius: 0;
  color: #f5f5f5;
}
#cases .modal-header {
  border-bottom: 1px solid #2c2f36;
}
#cases .modal-footer {
  border-top: 1px solid #2c2f36;
}
#cases .modal-title {
  font-family: 'Lato', sans-serif;
  color: #f5f5f5;
}
#cases .modal .case-badge {
  margin-bottom: 16px;
}
#cases .modal-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 20px;
  background: #101216;
}
#cases .modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#cases .btn-close-custom {
  background: transparent;
  border: 1px solid #444;
  color: #f5f5f5;
}

.services-section {
  background-color: #101216;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
}
.services-section h2 {
  font-family: 'Lato', sans-serif;
  color: #f5f5f5;
  font-weight: 700;
}
.services-section .lead-text {
  color: hsl(355, 41%, 80%);
  max-width: 700px;
  margin: 0 auto;
}
.service-card {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  padding: 40px 28px;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
.service-card:hover {
  border-color: hsl(349, 52%, 60%);
  background-color: #212530;
  transform: translateY(-6px);
}
.service-icon {
  font-size: 2.4rem;
  color: hsl(349, 52%, 60%);
  margin-bottom: 20px;
  display: inline-block;
}
.service-card:hover .service-icon {
  color: hsl(341, 71%, 75%);
}
.service-card h3 {
  font-family: 'Lato', sans-serif;
  color: #f5f5f5;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.service-card p {
  color: #c9ccd1;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-price {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(349, 52%, 60%);
  font-size: 1.15rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}
@media (max-width: 767px) {
  .services-section { padding: 64px 0; }
}



#figures {
  background: #14161b;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #f1f1f1;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

#figures h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
}

#figures .lead-text {
  color: hsl(355, 41%, 80%);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

#figures .stat-card {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 36px 20px;
  height: 100%;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

#figures .stat-card:hover {
  border-color: hsl(349, 52%, 60%);
  transform: translateY(-4px);
}

#figures .stat-icon {
  font-size: 2.2rem;
  color: hsl(341, 71%, 75%);
  margin-bottom: 14px;
  display: block;
}

#figures .stat-number {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  animation: countReveal 1.2s ease-out;
}

#figures .stat-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: hsl(349, 52%, 70%);
  margin-bottom: 4px;
}

#figures .stat-context {
  font-size: 0.85rem;
  color: #b7b9bf;
  font-family: 'Merriweather', serif;
}

@keyframes countReveal {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 767px) {
  #figures { padding: 64px 0; }
  #figures .stat-number { font-size: 2.1rem; }
}

#contact {
  background: #14161b;
  color: #f2f2f2;
  font-family: 'Merriweather', serif;
  padding: 96px 0;
}
#contact h2, #contact h3 {
  font-family: 'Lato', sans-serif;
  color: #ffffff;
}
#contact .lead-text {
  color: hsl(355, 41%, 80%);
}
#contact .contact-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px;
  height: 100%;
}
#contact .contact-panel .form-label {
  color: #f2f2f2;
  font-family: 'Lato', sans-serif;
}
#contact .contact-panel .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.2);
  color: #f2f2f2;
  border-radius: 0;
}
#contact .contact-panel .form-control:focus {
  background: #101216;
  border-color: hsl(349, 52%, 60%);
  box-shadow: 0 0 0 0.2rem rgba(203, 84, 108, 0.25);
  color: #f2f2f2;
}
#contact .contact-panel .form-control::placeholder {
  color: rgba(242,242,242,0.5);
}
#contact .btn-submit {
  background: hsl(349, 52%, 60%);
  color: #101216;
  border: none;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border-radius: 0;
  letter-spacing: 0.03em;
}
#contact .btn-submit:hover {
  background: hsl(341, 71%, 75%);
  color: #101216;
}
#contact .info-block {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
}
#contact .info-block:last-child {
  border-bottom: none;
}
#contact .info-block .label {
  font-family: 'Lato', sans-serif;
  color: hsl(341, 71%, 75%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
#contact .info-block a {
  color: #f2f2f2;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
#contact .info-block a:hover {
  color: hsl(349, 52%, 60%);
  border-color: hsl(349, 52%, 60%);
}
#contact .map-link {
  color: hsl(349, 52%, 60%) !important;
  border-bottom: 1px solid hsl(349, 52%, 60%) !important;
  font-size: 0.95rem;
}
#contact .map-link:hover {
  color: hsl(341, 71%, 75%) !important;
  border-color: hsl(341, 71%, 75%) !important;
}

#disclaimer {
  background-color: #14161b;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #e8e6e3;
  border-top: 1px solid rgba(232, 230, 227, 0.1);
}
#disclaimer h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #f5f3f1;
  letter-spacing: 0.5px;
}
#disclaimer .icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(349, 52%, 60%);
  color: #14161b;
  flex-shrink: 0;
}
#disclaimer .icon-wrap i {
  font-size: 1.6rem;
}
#disclaimer .disclaimer-panel {
  background-color: #1a1d23;
  border: 1px solid rgba(232, 230, 227, 0.15);
  padding: 40px;
}
#disclaimer p {
  color: #c9c6c2;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #disclaimer {
    padding: 56px 0;
  }
  #disclaimer .disclaimer-panel {
    padding: 28px;
  }
}

#about-content {
  background: #101216;
  color: #e8e6e6;
  font-family: 'Merriweather', serif;
  padding: 96px 0;
}
#about-content h1, #about-content h2, #about-content h3 {
  font-family: 'Lato', sans-serif;
  color: #fff;
}
#about-content .lead-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #cfcccc;
}
#about-content .accent-text {
  color: hsl(341, 71%, 75%);
}
#about-content .panel {
  background: #16181d;
  border: 1px solid #2a2d33;
  padding: 32px;
}
#about-content img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #2a2d33;
}
#about-content .team-card {
  background: #16181d;
  border: 1px solid #2a2d33;
  padding: 28px;
  height: 100%;
}
#about-content .team-card .role {
  color: hsl(349, 52%, 60%);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
#about-content table {
  color: #e8e6e6;
  border-color: #2a2d33;
}
#about-content table th {
  font-family: 'Lato', sans-serif;
  color: #fff;
  border-color: #2a2d33;
  background: #1a1d23;
}
#about-content table td {
  border-color: #2a2d33;
}
#about-content .btn-cta {
  background: hsl(349, 52%, 60%);
  color: #101216;
  border: none;
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
  display: inline-block;
}
#about-content .btn-cta:hover {
  background: hsl(341, 71%, 75%);
  color: #101216;
}
#about-content hr {
  border-color: #2a2d33;
  margin: 56px 0;
}
#about-content .section-tag {
  color: hsl(355, 41%, 80%);
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

#contact-section {
  background: #101216;
  color: #f2f2f2;
  font-family: 'Merriweather', serif;
  padding: 96px 0;
}
#contact-section h1,
#contact-section h2,
#contact-section h3 {
  font-family: 'Lato', sans-serif;
  color: #ffffff;
}
#contact-section .lead-text {
  color: hsl(355, 41%, 80%);
  max-width: 640px;
}
#contact-section .panel {
  background: #16181d;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px;
  height: 100%;
}
#contact-section label {
  font-family: 'Lato', sans-serif;
  color: #f2f2f2;
  margin-bottom: 6px;
  display: block;
}
#contact-section .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.2);
  color: #f2f2f2;
  border-radius: 0;
  padding: 10px 14px;
  margin-bottom: 20px;
}
#contact-section .form-control:focus {
  background: #101216;
  color: #ffffff;
  border-color: hsl(349, 52%, 60%);
  box-shadow: none;
}
#contact-section .form-control::placeholder {
  color: rgba(255,255,255,0.4);
}
#contact-section .btn-primary-custom {
  background: hsl(349, 52%, 60%);
  border: none;
  color: #101216;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#contact-section .btn-primary-custom:hover {
  background: hsl(341, 71%, 75%);
  color: #101216;
}
#contact-section .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
#contact-section .info-list li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}
#contact-section .info-list li:first-child {
  padding-top: 0;
}
#contact-section .info-label {
  font-family: 'Lato', sans-serif;
  color: hsl(341, 71%, 75%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}
#contact-section a {
  color: hsl(349, 52%, 60%);
  text-decoration: none;
}
#contact-section a:hover {
  color: hsl(341, 71%, 75%);
  text-decoration: underline;
}
#contact-section .find-us {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}
#contact-section .divider-line {
  width: 60px;
  height: 2px;
  background: hsl(349, 52%, 60%);
  margin-bottom: 24px;
}
#contact-section .cta-block {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 767px) {
  #contact-section .panel {
    padding: 28px 20px;
  }
  #contact-section {
    padding: 56px 0;
  }
}
