/* Reset & Base */
:root {
  --primary: #ec2f38;
  --primary-light: #f35b62;
  --primary-dark: #ca1a23;
  --text-dark: #2a2a2a;
  --text-gray: #666666;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --bg-pink: #fdf4f4;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -1px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a i {
  font-size: 12px;
}

.header-search {
  position: relative;
}

.header-search input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 8px 16px 8px 36px;
  color: var(--text-light);
  font-size: 14px;
  font-family: inherit;
  width: 150px;
  transition: border-color 0.3s;
}

.header-search input::placeholder {
  color: rgba(255,255,255,0.7);
}

.header-search input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.8);
}

.header-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px; /* Reduced to avoid pushing cards down too far */
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 500px;
  text-align: center;
  color: var(--text-light);
  z-index: 1;
  margin-top: 0;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f95f65 0%, #e62e35 100%);
  clip-path: url(#hero-curve);
}

.hero-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.6;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  max-width: 750px;
  margin-inline: auto;
  opacity: 0.9;
  margin-bottom: 40px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* Three Pillars Section */
.pillars {
  position: relative;
  z-index: 10;
  margin-top: 10px; /* Pull it up into the red hero */
  padding-bottom: 80px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.1);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 36px;
  background: var(--bg-light);
}

.pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* About Network Section */
.about {
  /* padding: 80px 0; */
  background-color: var(--bg-light);
}

.about-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.about-title-block {
  flex: 1;
}

.about-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.about-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 800px;
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(227, 27, 35, 0.3);
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-outline-red:hover {
  background: var(--primary);
  color: var(--text-light);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-row-top {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  background: var(--bg-pink);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.about-row-top .about-card {
  width: calc(50% - 10px);
}

.about-card-icon {
  color: var(--primary);
  opacity: 0.8;
  margin-bottom: 16px;
}

.about-card-icon img {
  height: 40px;
  width: auto;
}

.about-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* News Section */
.news {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.news-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--bg-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-content {
  padding: 24px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.news-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.news-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.news-dot.active {
  background: var(--primary);
}

/* Members Section */
.members {
  padding: 80px 0;
  background: var(--bg-light);
}

.members-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 40px;
}

.members-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}

.members-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.members-img-wrap img {
  width: 100%;
  height: auto;
}

.members-info-box {
  background: var(--bg-light);
}

.ptit-logo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ptit-logo-header img {
  height: 50px;
}

.ptit-logo-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
}

.members-info-box > h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.members-info-box > p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.partners-carousel-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 60px;
  position: relative;
}

.partners-carousel-wrap::before, .partners-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}

.partners-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

.partners-carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-left 50s linear infinite;
}

.partners-carousel-track:hover {
  animation-play-state: paused;
}

.partners-carousel-group {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 50px; /* same as gap, ensures identical seam */
}

.partner-logo {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo img {
  max-height: 60px;
  max-width: 150px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s;
}

.partner-logo img:hover {
  opacity: 1;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer */
footer {
  background: var(--primary);
  background: linear-gradient(135deg, #d32027 0%, #aa141a 100%);
  color: var(--text-light);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

/* Background Graphic Effects */
footer::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -5%;
  width: 45%;
  height: 180%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%);
  border-radius: 80px;
  transform: rotate(35deg);
  pointer-events: none;
  z-index: 1;
}

footer::after {
    content: "";
    position: absolute;
    bottom: -64%;
    right: 64%;
    width: 40%;
    height: 180%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 80px;
    transform: rotate(216deg);
    pointer-events: none;
    z-index: 1;
}

.footer-inner {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 3fr 2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.5px;
  margin-bottom: 15px;
  display: inline-block;
  text-decoration: none;
}

.footer-desc {
  font-size: 14.5px;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 14.5px;
  color: var(--text-light);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

/* Contact List */
.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.contact-list i {
  margin-top: 3px;
  opacity: 0.8;
  font-size: 18px;
}

.contact-text {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 5px;
}

.contact-text p, .contact-text p a {
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0;
  color: var(--text-light);
  opacity: 0.95;
  text-decoration: none;
}

/* Subscribe Form */
.subscribe-form {
  position: relative;
}

.subscribe-form .input-group {
  position: relative;
  margin-bottom: 15px;
}

.subscribe-form .input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  opacity: 0.8;
  font-size: 16px;
}

.subscribe-form input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--text-light);
  padding: 14px 15px 14px 45px;
  border-radius: 30px;
  outline: none;
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color 0.3s;
}

.subscribe-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.subscribe-form input:focus {
  border-color: rgba(255,255,255,0.9);
}

.btn-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-subscribe:hover {
  background: var(--text-light);
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 30px;
  font-size: 13.5px;
  opacity: 0.8;
}

/* Header Dark Variant for Subpages */
.header-dark {
  position: sticky;
  top: 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.header-dark .logo {
  color: var(--primary);
}

.header-dark .main-nav a {
  color: var(--text-dark);
}

.header-dark .main-nav a:hover,
.header-dark .main-nav a.active {
  color: var(--primary);
}

.header-dark .header-search input {
  border-color: #ddd;
  color: var(--text-dark);
}

.header-dark .header-search input::placeholder {
  color: #999;
}

.header-dark .header-search i {
  color: #999;
}

/* Members Subpage Styles */
.page-members-wrap {
  padding: 60px 0 100px;
  background-color: var(--bg-light);
}

.member-category {
  margin-bottom: 60px;
}

.category-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.category-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.coordinator-card {
  background: var(--bg-light);
  border: 1px solid rgba(236, 47, 56, 0.2);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.coordinator-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.coordinator-logo {
  height: 50px;
  object-fit: contain;
}

.btn-detail {
  background: var(--primary);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-detail:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  text-decoration: none;
}

.coordinator-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.coordinator-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.member-card {
  background: var(--bg-light);
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.04);
  border-color: rgba(236, 47, 56, 0.3);
}

.member-logo-wrap {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.member-logo-wrap img {
  max-height: 100%;
  max-width: 140px;
  object-fit: contain;
}

.member-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.member-role {
  font-size: 12.5px;
  color: var(--primary);
  font-weight: 500;
}

/* Table Styles for Ban Dieu Phoi */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
  background: var(--bg-light);
}

.coordinator-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.coordinator-table th,
.coordinator-table td {
  padding: 16px 20px;
  text-align: left;
  line-height: 1.5;
}

.coordinator-table th {
  background-color: var(--primary);
  color: var(--text-light);
  font-weight: 600;
  white-space: nowrap;
  font-size: 15px;
}

.coordinator-table tbody tr {
  border-bottom: 1px solid #eaeaea;
}

.coordinator-table tbody tr:last-child {
  border-bottom: none;
}

.coordinator-table tbody tr:nth-child(even) {
  background-color: #fcfcfc;
}

.coordinator-table tbody tr:hover {
  background-color: #fdf0f1;
}

.coordinator-table td:nth-child(1) {
  width: 40%;
  font-weight: 600;
  color: var(--text-dark);
}

.coordinator-table td:nth-child(2) {
  width: 25%;
  color: #333;
}

.coordinator-table td:nth-child(3) {
  width: 35%;
  color: #555;
  font-size: 14.5px;
}

/* Responsive */
@media (max-width: 991px) {
  .pillars-grid, .news-grid, .members-intro {
    grid-template-columns: 1fr;
  }
  .about-header, .news-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .about-row-top { flex-direction: column; }
  .about-row-top .about-card { width: 100%; }
  .about-row-bottom { grid-template-columns: 1fr; }
  /* Mobile footer overrides */
  footer { padding: 40px 0 20px; overflow: hidden; }
  
  /* Mobile Background Graphic Effects */
  footer::before {
    top: -10%;
    left: -20%;
    width: 120%;
    height: 100%;
    border-radius: 60px;
    transform: rotate(35deg);
  }
  
  footer::after {
    bottom: -15%;
    right: -20%;
    width: 120%;
    height: 100%;
    border-radius: 60px;
    transform: rotate(35deg);
  }

  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 0; 
    margin-bottom: 20px;
  }
  .footer-col {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-col-intro {
    padding-top: 0;
    order: 1;
  }
  .footer-col-subscribe {
    order: 2;
  }
  .footer-col-links {
    order: 3;
  }
  .footer-col-contact {
    order: 4;
    border-bottom: none;
  }
  .footer-bottom {
    padding-top: 25px;
  }
  
  /* Mobile subscribe button */
  .subscribe-form {
    display: flex;
    gap: 15px;
  }
  .subscribe-form .input-group {
    flex: 1;
    margin-bottom: 0;
  }
  .btn-subscribe {
    padding: 0;
    width: 48px;
    height: 48px;
    justify-content: center;
    border-radius: 50%;
  }
  .btn-subscribe .btn-text {
    display: none;
  }
  .btn-subscribe i {
    margin: 0;
    font-size: 16px;
  }
  .members-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .coordinator-card {
    display: flex;
    flex-direction: column;
  }
  .coordinator-header {
    display: contents;
  }
  .coordinator-logo {
    order: 1;
    margin-bottom: 20px;
  }
  .coordinator-card h3 {
    order: 2;
  }
  .coordinator-card p {
    order: 3;
    margin-bottom: 20px;
  }
  .btn-detail {
    order: 4;
    align-self: flex-start;
  }
}

/* PDF Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fff;
  margin: 5vh auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 1000px;
  height: 90vh;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  overflow: hidden;
  animation: modalFadeIn 0.3s ease-out forwards;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #333;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s;
  line-height: 1;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.close-modal:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    height: 85vh;
    margin: 7.5vh auto;
  }
}
