* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html { 
  -webkit-text-size-adjust: 100%; 
}
body { 
  overflow-x: hidden; 
}

/* Body content */

.hero {
  padding: 22px 0 8px;
  margin-top: 150px;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  background: #fff;
}

.hero-image {
  position: relative;
  min-height: 420px;
}

.hero-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroContent {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
}

.heroTitle {
  font-family: Alice, serif;
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(111, 218, 211, 0.95);
}

.heroSubtitle {
  padding-top: 16px;
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.7;
  max-width: 62ch;
  color: rgba(0, 0, 0, 0.78);
}

.aboutPanel {
  padding: 18px 0 40px;
  margin-top: 10px;
}

.aboutPanelCard {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 34px 38px;
}

.aboutPanelTitle {
  font-family: Alice, serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 14px;
  text-align: center;
}

.aboutPanelText {
  font-size: 22px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.78);
  max-width: 80ch;
  margin: auto;
}

.aboutPanelText1{
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 20px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.78);
  max-width: 80ch;
  margin: auto;
}

.aboutPanelText2{
  font-size: 25px;
  font-weight: 600;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.78);
  max-width: 80ch;
}

.resourcesLinks{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.resourceLink{
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(111, 218, 211, 0.12);
  border: 1px solid rgba(111, 218, 211, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-block;
  min-width: 260px;
}

.resourceLink:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

/* End Body content */

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-card {
    grid-template-columns: 1fr;
  }
  .hero-image {
    min-height: 320px;
  }
  .heroContent {
    padding: 28px;
  }
  .aboutPanelCard {
    padding: 26px 22px;
  }
}

@media (max-width: 576px) {
  .heroTitle {
    font-size: 36px;
  }
  .aboutPanelTitle {
    font-size: 32px;
  }
  .heroSubtitle,
  .aboutPanelText {
    font-size: 18px;
  }
}

img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

iframe {
  height: 1169px !important;
  max-width: 100%;
}

a, .resourceCardLink, .resourceLink {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.websiteRow, .formatCard, .heroContent, .cardBody {
  min-width: 0;
}

.websiteRow a, .formatCard a, .resourcesLinks a {
  max-width: 100%;
}

.callButton, .addressFormat {
  max-width: 100%;
  white-space: normal;
}

.heroTitle{ 
  font-size: clamp(28px, 4vw, 45px); 
}
.heroSubtitle{ 
  font-size: clamp(16px, 2.1vw, 25px); 
}
.aboutPanelTitle{ 
  font-size: clamp(26px, 3.6vw, 44px); 
}
.aboutPanelText{
   font-size: clamp(16px, 2vw, 22px); 
  }
.aboutPanelText1, .aboutPanelText2{ 
  font-size: clamp(16px, 2.1vw, 25px);
}

.resourceLink{
  width: min(520px, 100%);
  min-width: 0;
}

iframe{
  border-radius: 12px;
}