/* ========================================
   BOSTI TRADING - Modern Website
   Color scheme: blue/teal matching original logo
   ======================================== */

/* CSS Variables */
:root {
  --primary: #0b7daa;
  --primary-dark: #086a91;
  --primary-light: #e4f2f8;
  --secondary: #1a9cc7;
  --secondary-light: #e8f6fb;
  --accent: #2db5d6;
  --text-dark: #152838;
  --text-medium: #3d5a6f;
  --text-light: #7a95a8;
  --bg-white: #ffffff;
  --bg-light: #f3f8fa;
  --bg-gray: #eaf1f5;
  --border: #cddce4;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo span {
  color: var(--text-medium);
  font-weight: 400;
  font-size: 0.85rem;
  display: block;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.lang-toggle {
  display: flex;
  align-items: center;
  margin-left: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.lang-toggle button {
  padding: 6px 14px;
  border: none;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}

.lang-toggle button.active {
  background: var(--primary);
  color: white;
}

/* Search */
.search-wrapper {
  position: relative;
}

.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-light);
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition);
}

.search-toggle:hover,
.search-toggle.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}

.search-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-input {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
}

.search-input:focus {
  background: var(--bg-white);
}

.search-results {
  max-height: 320px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background var(--transition);
}

.search-result-item:hover {
  background: var(--bg-light);
}

.search-result-item:last-child {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.search-result-item .result-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.search-result-item .result-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.search-result-item .result-info {
  min-width: 0;
}

.search-result-item .result-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.search-result-item .result-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-no-results {
  padding: 24px 16px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--bg-white) 0%, var(--primary-light) 50%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 125, 170, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  min-width: 0;
}

.hero-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(11, 125, 170, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ========================================
   FEATURED PARTNERS
   ======================================== */
.featured {
  padding: 80px 0;
  background: linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)), url('../images/photos/hospital-corridor.jpg') center/cover no-repeat;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .overline {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

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

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.tag {
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ========================================
   PROFILE SECTION
   ======================================== */
.profile {
  padding: 100px 0;
  background: linear-gradient(rgba(243,248,250,0.82), rgba(243,248,250,0.82)), url('../images/photos/medical-equipment.jpg') center/cover no-repeat fixed;
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.profile-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.profile-text p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.profile-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.profile-highlight {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.profile-highlight .icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.profile-highlight h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.profile-highlight p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-card .partner-logo {
  height: 32px;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}

.product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-card .arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-light);
}

.product-card:hover .arrow {
  background: var(--primary);
  color: white;
}

.product-card p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.6;
}

.product-card .product-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card .product-tags .tag {
  font-size: 0.75rem;
  padding: 4px 10px;
}

/* ========================================
   PARTNER DETAIL MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  float: right;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-medium);
  transition: all var(--transition);
}

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

.modal .modal-logo {
  height: 40px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.modal h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  padding-right: 48px;
}

.modal .modal-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.modal .modal-product-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: none;
}

.modal p {
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}

.modal h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.modal ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 16px;
}

.modal ul li {
  color: var(--text-medium);
  margin-bottom: 6px;
  line-height: 1.6;
}

.modal .modal-website-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.modal .modal-website-link:hover {
  background: var(--primary-dark);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-medium);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-detail h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-detail p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Our Offices */
.offices-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.offices-section h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
}

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

.office-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.office-card.office-main {
  border-color: var(--primary);
  border-width: 2px;
}

.office-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.office-card p {
  color: var(--text-medium);
  font-size: 0.85rem;
  margin-bottom: 4px;
  line-height: 1.5;
}

.office-card p strong {
  color: var(--text-dark);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(11, 125, 170, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.captcha-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.captcha-group label {
  flex: none;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--text-dark);
}

.captcha-group input {
  width: 80px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.captcha-error {
  color: #e53e3e;
  font-size: 0.85rem;
  width: 100%;
}

.contact-email-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  transition: color var(--transition);
}

.contact-email-link:hover {
  color: var(--primary-dark);
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ========================================
   DISCLAIMER SECTION
   ======================================== */
.disclaimer {
  padding: 100px 0;
  background: var(--bg-white);
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

.disclaimer-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.disclaimer-content p {
  color: var(--text-medium);
  margin-bottom: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-partners-col ul {
  columns: 2;
  column-gap: 24px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ========================================
   PAGE VISIBILITY
   ======================================== */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .profile-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .search-panel {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    width: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 16px;
    width: 100%;
  }

  .lang-toggle {
    margin-left: 0;
    margin-top: 8px;
    align-self: flex-start;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .modal {
    padding: 32px 24px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .profile-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero h1 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stat .number {
    font-size: 1.4rem;
  }

  .hero-stat .label {
    font-size: 0.75rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .modal {
    padding: 24px 16px;
  }

  .modal h2 {
    font-size: 1.4rem;
  }
}
