body {
  font-family: 'Raleway', sans-serif;
  background-color: #fff8f9;
  color: #3a1525;
  margin: 0;
  padding: 0;
}

a { color: #a0003a; text-decoration: none; }
a:hover { text-decoration: underline; }
p { font-size: 14px; line-height: 1.8; margin-bottom: 8px; }
li { font-size: 14px; line-height: 1.9; }
ul { padding-left: 18px; margin-bottom: 8px; }
b { color: #3a1525; }

h1 { font-family: 'Cormorant Garamond', serif; font-size: 64px; color: #3a1525; margin-bottom: 16px; }
h1 span { font-style: italic; color: #a0003a; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: #3a1525; margin-bottom: 24px; }
h2 em { font-style: italic; color: #a0003a; }
h2.light-h { color: #fce8ec; }
h2.light-h em { color: #f4b8c4; }
h3 { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: #a0003a; margin-top: 20px; margin-bottom: 8px; }
h3:first-child { margin-top: 0; }

.navbar {
  background-color: #f5e8ec;
  border-bottom: 1px solid #d4a0b0;
  padding: 0 40px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #3a1525; margin: 0; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: #6b2a3a; }
.nav-links a:hover { color: #a0003a; text-decoration: none; }
.resume-link { border: 1px solid #a0003a; padding: 6px 16px; border-radius: 3px; }
.resume-link:hover { background-color: #a0003a; color: white; }

.hero { display: flex; align-items: center; gap: 60px; max-width: 1100px; margin: 0 auto; padding: 70px 40px; }
.hero-text { flex: 1; }
.hero-image { flex: 1; display: flex; justify-content: flex-end; }
.hero-image img { width: 340px; height: 420px; object-fit: cover; object-position: center 10%; border-radius: 6px; border: 1px solid #d4a0b0; }
.small-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #a0003a; margin-bottom: 14px; }
.hero-para { font-size: 15px; color: #6b2a3a; max-width: 440px; margin-bottom: 28px; }
.hero-buttons { display: flex; gap: 14px; margin-bottom: 24px; }
.hero-contact { font-size: 13px; color: #6b2a3a; }
.hero-contact a { color: #a0003a; }

.btn-pink { background-color: #a0003a; color: white; border: 1px solid #a0003a; padding: 11px 26px; font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 500; border-radius: 3px; cursor: pointer; }
.btn-pink:hover { background-color: #7a002c; }
.btn-pink.small { padding: 7px 14px; font-size: 12px; }
.btn-outline { background-color: transparent; color: #a0003a; border: 1px solid #d4a0b0; padding: 11px 26px; font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 500; border-radius: 3px; display: inline-block; }
.btn-outline:hover { border-color: #a0003a; text-decoration: none; }
.btn-outline.small { padding: 7px 14px; font-size: 12px; }

.section { max-width: 1100px; margin: 0 auto; padding: 70px 40px; }
.pink-section { background-color: #3a1525; padding: 70px 40px; text-align: center; }
.section-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #a0003a; display: block; margin-bottom: 10px; }
.section-label.light { color: #f4b8c4; }

.three-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 10px; text-align: left; }
.box { background-color: white; border: 1px solid #f0c8d0; border-radius: 6px; padding: 26px 22px; }
.dark-box { background-color: rgba(255,255,255,0.05); border: 1px solid rgba(244,184,196,0.15); border-radius: 6px; padding: 26px 22px; }
.dark-box h3 { color: #f4b8c4; }
.dark-box p { color: rgba(252,232,236,0.72); }
.num { font-family: 'Cormorant Garamond', serif; font-size: 38px; color: rgba(160,0,58,0.2); margin-bottom: 8px; }

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 6px; }
.tags span { font-size: 12px; color: #6b2a3a; background-color: #fff0f3; border: 1px solid #f0c8d0; padding: 4px 11px; border-radius: 3px; }

.cert-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; margin-top: 10px; }
.cert-card { background-color: white; border: 1px solid #f0c8d0; border-radius: 6px; overflow: hidden; }
.cert-card:hover { box-shadow: 0 8px 24px rgba(60,20,40,0.1); }
.cert-img-wrap { position: relative; overflow: hidden; }
.cert-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.cert-hover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(20,5,12,0.55); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; opacity: 0; }
.cert-card:hover .cert-hover { opacity: 1; }
.cert-card > p { font-size: 13px; color: #3a1525; padding: 10px 12px; text-align: center; margin: 0; }

.contact-info { margin-top: 22px; }
.contact-info p { font-size: 13px; color: rgba(244,184,196,0.4); margin-bottom: 4px; }

.footer { background-color: #280e18; padding: 24px 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: #f4b8c4; margin: 0; }
.footer p:last-child { font-size: 12px; color: rgba(244,184,196,0.3); margin: 0; }

.pdf-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: none; z-index: 999; }
.pdf-modal.open { display: block; }
.pdf-backdrop { position: absolute; width: 100%; height: 100%; background-color: rgba(15,5,10,0.75); }
.pdf-panel { position: relative; width: 90%; max-width: 1080px; height: 86vh; margin: 5vh auto; background-color: white; border-radius: 6px; overflow: hidden; }
.pdf-close { position: absolute; top: 10px; right: 12px; width: 34px; height: 34px; background-color: #fff0f3; color: #a0003a; border: none; border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 2; }
.pdf-top { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; border-bottom: 1px solid #f0c8d0; font-size: 14px; color: #3a1525; }
.pdf-top a { font-size: 13px; color: #a0003a; }
#pdfFrame { width: 100%; height: calc(100% - 50px); border: none; }

@media (max-width: 900px) {
  .three-cols { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .hero { flex-direction: column; text-align: center; padding: 50px 24px; }
  .hero-image { justify-content: center; order: -1; }
  .hero-image img { width: 220px; height: 270px; }
  .hero-buttons { justify-content: center; }
  .hero-para { margin-inline: auto; }
}

@media (max-width: 600px) {
  .three-cols { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
  .navbar { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .section { padding: 50px 20px; }
  .pink-section { padding: 50px 20px; }
  .footer { flex-direction: column; gap: 6px; text-align: center; padding: 20px; }
}
