/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

.accent-line {
  width: 50px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  padding: 0.8rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar-logo-icon {
  flex-shrink: 0;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  transition: color 0.2s;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s;
}

.navbar-links a:hover {
  color: #2563eb;
}

.navbar-links a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f172a;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  padding-right: 2rem;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #2563eb;
  margin-bottom: 1rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero-image img {
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  position: relative;
  z-index: 2;
}

.hero-image-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
}

/* ===== O MNIE ===== */
.about {
  background: #ffffff;
}

.about-content {
  max-width: 750px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 1.25rem;
  text-align: center;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ===== USŁUGI ===== */
.services {
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 16px;
  color: #2563eb;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.service-card p {
  color: #64748b;
  font-size: 0.95rem;
}

.services-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border-radius: 14px;
  border-left: 4px solid #2563eb;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-highlight-icon {
  flex-shrink: 0;
  color: #2563eb;
  margin-top: 0.1rem;
}

.services-highlight-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.services-highlight-text p {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== CERTYFIKATY ===== */
.certificates {
  background: #ffffff;
}

.cert-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.cert-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e2e8f0;
}

.cert-year-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.cert-year-group:last-child {
  margin-bottom: 0;
}

.cert-year-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 32px;
  background: #2563eb;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 16px;
  letter-spacing: 0.02em;
}

.cert-list {
  list-style: none;
  padding-left: 72px;
  margin-top: 0.75rem;
}

.cert-list li {
  position: relative;
  padding: 0.85rem 1.25rem;
  background: #f8fafc;
  border-radius: 10px;
  margin-bottom: 0.6rem;
  border-left: 3px solid #dbeafe;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cert-list li:hover {
  border-left-color: #2563eb;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
}

.cert-list li::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #ffffff;
  border: 2px solid #2563eb;
  border-radius: 50%;
  z-index: 2;
}

.cert-date {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.15rem;
  letter-spacing: 0.01em;
}

.cert-title {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.45;
}

.cert-org {
  display: block;
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 0.15rem;
}

/* Collapsible section */
.cert-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.cert-collapsible.expanded {
  max-height: 4000px;
}

/* Fade-out gradient overlay when collapsed */
.cert-timeline {
  position: relative;
}

.cert-timeline::after {
  content: '';
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 3;
}

.cert-timeline.no-fade::after {
  opacity: 0;
}

/* Toggle button */
.cert-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem auto 0;
  padding: 0.85rem 2rem;
  background: #eff6ff;
  color: #2563eb;
  border: 2px solid #bfdbfe;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 4;
}

.cert-toggle-btn:hover {
  background: #dbeafe;
  border-color: #93c5fd;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.cert-toggle-count {
  font-weight: 400;
  opacity: 0.7;
}

.cert-toggle-icon {
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.cert-toggle-btn.expanded .cert-toggle-icon {
  transform: rotate(180deg);
}

/* ===== KONTAKT ===== */
.contact {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  color: #ffffff;
}

.contact .section-header h2 {
  color: #ffffff;
}

.contact .section-header p {
  color: #94a3b8;
}

.contact .accent-line {
  background: #60a5fa;
}

.contact-content {
  text-align: center;
}

.contact-place {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-address {
  color: #94a3b8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.contact-phone:hover {
  color: #60a5fa;
}

.contact-phone svg {
  width: 28px;
  height: 28px;
}

.contact-cta {
  margin-top: 1rem;
}

.btn-light {
  background: #ffffff;
  color: #1e3a5f;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-light:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ===== PUBLIKACJE ===== */
.publications {
  background: #f8fafc;
}

.publications-list {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.publication-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.publication-item:first-child {
  padding-top: 0;
}

.publication-item:last-child {
  border-bottom: none;
}

.publication-year {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-top: 0.15rem;
}

.publication-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.publication-authors {
  font-size: 0.9rem;
  color: #64748b;
}

.publication-authors strong {
  color: #334155;
}

.publications-cta {
  text-align: center;
}

.publications-btn {
  font-size: 0.9rem;
}

/* ===== EDUKACJA ===== */
.education {
  background: #ffffff;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.education-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
}

.education-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #2563eb;
}

.education-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 14px;
  color: #2563eb;
}

.education-icon svg {
  width: 28px;
  height: 28px;
}

.education-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.education-text p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.education-link {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.education-card:hover .education-link {
  color: #1d4ed8;
}

/* ===== WYKŁADY ===== */
.lectures {
  background: #f8fafc;
}

.lecture-upcoming {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  max-width: 600px;
  margin: 0 auto;
}

.lecture-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.lecture-details h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.lecture-details p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Filled lecture (when event data is available) */
.lecture-upcoming.has-event .lecture-date {
  font-size: 0.85rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lecture-upcoming.has-event .lecture-location {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Past lectures */
.lectures-past {
  margin-top: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lectures-past-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 1rem;
  text-align: center;
}

.lecture-past-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.lecture-past-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f1f5f9;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  min-width: 56px;
}

.lecture-past-date .lecture-day {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.lecture-past-date .lecture-month {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-top: 0.15rem;
}

.lecture-past-info h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.lecture-past-topic {
  font-size: 0.9rem;
  color: #475569;
  font-style: italic;
  margin-bottom: 0.25rem;
}

.lecture-past-location {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ===== ABOUT LINK ===== */
.about-content a {
  color: #2563eb;
  font-weight: 500;
  transition: color 0.2s;
}

.about-content a:hover {
  color: #1d4ed8;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: #60a5fa;
  transition: color 0.2s;
}

.footer a:hover {
  color: #93bbfc;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #0f172a;
  color: #e2e8f0;
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-cookie-accept {
  background: #2563eb;
  color: #ffffff;
}

.btn-cookie-accept:hover {
  background: #1d4ed8;
}

.btn-cookie-reject {
  background: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
}

.btn-cookie-reject:hover {
  color: #e2e8f0;
  border-color: #94a3b8;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for cards */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(5) { transition-delay: 0.4s; }
.service-card:nth-child(6) { transition-delay: 0.5s; }
.service-card:nth-child(7) { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  /* Mobile nav */
  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .navbar-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero mobile */
  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    order: 1;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: 0;
    margin-bottom: 1rem;
  }

  .hero-image img {
    max-height: 350px;
  }

  /* Services mobile */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-phone {
    font-size: 1.25rem;
  }

  /* Education mobile */
  .education-grid {
    grid-template-columns: 1fr;
  }

  .education-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Lectures mobile */
  .lecture-upcoming {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lecture-past-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Publications mobile */
  .publication-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Certificates mobile */
  .cert-timeline::before {
    left: 18px;
  }

  .cert-year-badge {
    width: 52px;
    height: 28px;
    font-size: 0.8rem;
  }

  .cert-list {
    padding-left: 50px;
  }

  .cert-list li::before {
    left: -34px;
    width: 6px;
    height: 6px;
  }

  .cert-list li {
    padding: 0.75rem 1rem;
  }

  .cert-title {
    font-size: 0.88rem;
  }

  .cert-org {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .hero-image img {
    max-height: 280px;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .navbar-logo {
    font-size: 0.82rem;
    gap: 0.35rem;
  }

  .navbar-logo-icon {
    width: 22px;
    height: 22px;
  }
}
