/* ===== BASE STYLES ===== */
:root {
  --primary-red: #901f1f;
  --secondary-blue: #1fbdec;
  --accent-purple: #8256b8e0;
  --accent-green: #24be76;
  --dark: #000000;
  --light: #f4f4f4;
  --table-blue: #5bc0de;
  --table-red: #a50404e3;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background-color: #f4f4f4;
  color: #000;
  line-height: 1.6;
}

/* ===== HEADER STYLES ===== */
.header {
  background-color: #901f1f;
  color: #fff;
  padding: 25px 10px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1fbdec, #901f1f, #1fbdec);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo img {
  height: 90px;
  width: auto;
  border-radius: 38px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 3px solid white;
}

.header-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.header-text h1 {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-text p {
  margin: 8px 0 0;
  font-size: 1.2rem;
  opacity: 0.9;
  letter-spacing: 1px;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-wrapper {
  position: relative;
}

.nav-links {
  display: flex;
}

.navbar a {
  padding: 16px 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.navbar a:hover {
  background-color: #1fbdec;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #1fbdec;
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar a:hover::after {
  width: 80%;
}

.navbar a.active {
  background-color: #1fbdec;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: white;
  cursor: pointer;
  padding: 10px;
}

/* Search styling */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-container input {
  padding: 10px 15px;
  border: none;
  border-radius: 30px 0 0 30px;
  outline: none;
  width: 250px;
  font-size: 1rem;
}

.search-container button {
  padding: 10px 20px;
  background: #1fbdec;
  color: white;
  border: none;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.search-container button:hover {
  background: #1a9fc7;
}

#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 10;
  box-shadow: var(--shadow);
}

#suggestions div {
  padding: 10px 15px;
  cursor: pointer;
  transition: var(--transition);
}

#suggestions div:hover {
  background: #f1f1f1;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    width: 200px;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 0 0 8px 0;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links a {
    display: block;
    padding: 12px 20px;
  }
  
  /* show on hover/focus */
  .menu-wrapper:hover .nav-links,
  .menu-wrapper:focus-within .nav-links {
    display: flex;
  }
  
  .search-container input {
    width: 150px;
  }
  
  .header-text h1 {
    font-size: 2rem;
  }
}

/* ===== MAIN CONTENT STYLES ===== */
.container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
}

.highlight {
  color: #d63384;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #901f1f;
  border-radius: 2px;
}

.short-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  background: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  border-left: 5px solid #901f1f;
  font-family: cursive, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, #901f1f, #b30000);
  color: white;
  padding: 25px;
  border-radius: var(--border-radius);
  margin: 25px 0;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  z-index: 0;
}

.highlight-box h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.highlight-box p {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}



.admit-notice {
            background-color: #e7f3ff;
            border: 1px solid #b8daff;
            border-radius: 5px;
            padding: 15px;
            margin: 15px 0;
        }
        
        .download-steps {
            background-color: #f8f9fa;
            border-left: 4px solid #007bff;
            padding: 15px;
            margin: 15px 0;
        }
        
        .download-steps ol {
            padding-left: 20px;
        }
        
        .download-steps li {
            margin-bottom: 10px;
        }
        
        .status-badge {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: bold;
            margin-left: 10px;
        }
        
        .status-active {
            background-color: #d4edda;
            color: #155724;
        }
        
        .status-upcoming {
            background-color: #fff3cd;
            color: #856404;
        }
        
        .status-closed {
            background-color: #f8d7da;
            color: #721c24;
        }
        
        .highlight-info {
            background-color: #fff3cd;
            font-weight: bold;
        }
        
        .exam-pattern {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            padding: 15px;
            margin: 15px 0;
        }

/* Exam Box */
.exam-box {
  background: white;
  border: 1px solid #000;
  border-radius: var(--border-radius);
  padding: 25px;
  margin: 25px 0;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid #901f1f;
  transition: var(--transition);
}

.exam-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.exam-box h3 {
  color: red;
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.exam-box .green {
  color: green;
  font-size: 1.8rem;
  margin: 10px 0;
  font-weight: bold;
}

.exam-box p {
  margin: 5px 0;
  color: #555;
}

.category-badges {
  margin-top: 15px;
}

.category-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  margin: 5px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: white;
}

.category-badge:hover {
  transform: scale(1.05);
}

.sc-badge { background: #e74c3c; }
.st-badge { background: #e67e22; }
.obc-badge { background: #3498db; }
.ebc-badge { background: #9b59b6; }

/* Section Styles */
.section {
  margin: 25px 0;
  border-radius: var(--border-radius);
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: var(--transition);
}

.section:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section h3 {
  background-color: #8256b8e0;
  color: white;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.4rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.section h3::before {
  content: '▶';
  margin-right: 10px;
  font-size: 0.8rem;
}

.section ul {
  padding: 20px 20px 20px 40px;
  margin: 0;
}

.section li {
  margin-bottom: 12px;
  position: relative;
}

.section li::before {
  content: '✓';
  color: #24be76;
  font-weight: bold;
  position: absolute;
  left: -20px;
}

/* Benefits List */
.benefits-list {
  background: #f8f9fa;
  border-left: 5px solid #3498db;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Status Indicators */
.status-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
}

.status-active { background: #27ae60; }
.status-upcoming { background: #f39c12; }
.status-closed { background: #e74c3c; }

/* Social Buttons */
.social {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  text-align: center;
  gap: 15px;
}

.social div {
  flex: 1;
  padding: 20px 10px;
  border-radius: var(--border-radius);
  background: white;
  border: 1px solid #ccc;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.social div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social button {
  margin-top: 10px;
  background: green;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.social button:hover {
  background: #006400;
  transform: scale(1.05);
}

/* Table Styles */
.section-table, .section-table-sell {
  margin: 30px 0;
  padding: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  box-shadow: 0 0 5px rgba(46, 122, 230, 0.5);
  overflow: hidden;
}

.table-title {
  background-color: #5bc0de;
  color: #ffffff;
  font-weight: bold;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.3rem;
  box-shadow: 0 0 5px rgba(46, 122, 230, 0.5);
}

.table-title-sell {
  background-color: #a50404e3;
  color: #ffffff;
  font-weight: bold;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.3rem;
  box-shadow: 0 0 5px rgba(46, 122, 230, 0.5);
}

.info-table, .table-info-sell {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  box-shadow: 0 0 5px rgba(46, 122, 230, 0.5);
}

.info-table th, .info-table td,
.table-info-sell th, .table-info-sell td {
  padding: 15px;
  text-align: left;
  border: 1px solid #ffffff;
  box-shadow: 0 0 5px rgba(46, 122, 230, 0.5);
  font-size: 1rem;
}

.info-table th, .table-info-sell th {
  background-color: #f1f1f1;
  font-weight: 600;
}

.info-table tr:hover, .table-info-sell tr:hover {
  background-color: #f5f7fa;
}

.info-table a, .table-info-sell a {
  color: #24be76;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  padding: 5px 0;
}

.info-table a:hover, .table-info-sell a:hover {
  color: #1e8c5a;
  transform: translateX(3px);
}

/* Links Table */
.links-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffe6b3;
  box-shadow: 0 0 5px rgba(46, 122, 230, 0.5);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.links-table tr {
  transition: var(--transition);
}

.links-table tr:hover {
  background-color: #ffdf9e;
}

.links-table td {
  border: 1px solid #ccc;
  padding: 15px;
  vertical-align: middle;
  font-size: 1rem;
  text-align: center;
}

.links-table a {
  color: blue;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
  padding: 8px 15px;
}

.links-table a:hover {
  color: #0000cc;
  transform: scale(1.05);
}

.link-hilight {
  background-color: #00ffe0;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 4px;
}

.new-badge {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  margin-left: 10px;
  vertical-align: middle;
}

/* ===== FOOTER STYLES ===== */
.footer-top {
  background-color: #1a75bb;
  color: white;
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 300px;
  margin: 15px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #1fbdec;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-section ul li a::before {
  content: '›';
  margin-right: 8px;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-section ul li a:hover::before {
  color: #1fbdec;
}

.footer-bottom {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  
  .highlight {
    font-size: 2rem;
  }
  
  .social {
    flex-direction: column;
  }
  
  .footer-container {
    flex-direction: column;
  }
  
  .info-table, .table-info-sell, .links-table {
    font-size: 0.9rem;
  }
  
  .info-table th, .info-table td,
  .table-info-sell th, .table-info-sell td,
  .links-table td {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* Animation for page load */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.container > * {
  animation: fadeIn 0.5s ease forwards;
}

.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.2s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }
.container > *:nth-child(4) { animation-delay: 0.4s; }
.container > *:nth-child(5) { animation-delay: 0.5s; }

/* Print Styles */
@media print {
  .navbar, .social, .footer-top, .footer-bottom {
    display: none;
  }
  
  .container {
    max-width: 100%;
    margin: 0;
    padding: 10px;
  }
  
  .section, .exam-box, .section-table, .section-table-sell {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .highlight-box {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .category-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            margin: 5px;
        }
        
        .sc-badge {
            background: #e74c3c;
            color: white;
        }
        
        .st-badge {
            background: #e67e22;
            color: white;
        }
        
        .obc-badge {
            background: #3498db;
            color: white;
        }
        
        .ebc-badge {
            background: #9b59b6;
            color: white;
        }
        
        .status-indicator {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .status-active {
            background: #2ecc71;
        }
        
        .status-upcoming {
            background: #f39c12;
        }
        
        .status-closed {
            background: #e74c3c;
        }
        
        .benefits-list {
            background: #f8f9fa;
            border-left: 4px solid #3498db;
            padding: 15px;
            margin: 15px 0;
        }
        
        /* Bihar STET 2025 Specific Styles */
.post-meta {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.post-meta span {
    margin-right: 20px;
}

.post-date {
    color: #e74c3c;
    font-weight: bold;
}

.page-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.news-alert {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    line-height: 1.6;
}

.app-download {
    text-align: center;
    background: #e8f4fc;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.social-icons {
    margin-top: 10px;
}

.whatsapp-icon, .telegram-icon {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 10px;
    background: #25D366;
    color: white;
    border-radius: 20px;
    font-size: 14px;
}

.telegram-icon {
    background: #0088cc;
}

.stet-highlight {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    text-align: center;
}

.quick-info {
    display: flex;
    justify-content: space-around;
    background: #2c3e50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-item {
    text-align: center;
}

.info-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.info-value {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.section-title {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.date-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.date-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-upcoming { background: #f39c12; }
.status-active { background: #2ecc71; }
.status-closed { background: #e74c3c; }
.status-pending { background: #95a5a6; }

.date-label {
    flex: 1;
    font-weight: 500;
}

.date-value {
    font-weight: bold;
    color: #2c3e50;
}

.disclaimer {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 15px;
    font-size: 14px;
}

.fee-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
    margin-left:20px ;: ;
}

.fee-table-container h4 {
    color: #e74c3c;
    margin-bottom: 10px;
}

.fee-table {
    width: 100%;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.fee-table tr {
    border-bottom: 1px solid #dee2e6;
}

.fee-table td {
    padding: 12px 15px;
}

.fee-table tr:last-child {
    border-bottom: none;
}

.payment-methods {
    margin-top: 20px;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.payment-badge {
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.age-limits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.age-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #ecf0f1;
}

.age-label {
    font-weight: 500;
}

.age-value {
    font-weight: bold;
    color: #2c3e50;
}

.eligibility-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.eligibility-item {
    margin-bottom: 20px;
}

.eligibility-item:last-child {
    margin-bottom: 0;
}

.eligibility-item h4 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.total-post {
    text-align: center;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.post-count {
    font-size: 48px;
    font-weight: bold;
    display: block;
}

.post-note {
    margin-top: 10px;
    font-size: 18px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.link-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.link-title {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #2c3e50;
}

.link-button {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 5px;
}

.link-button:hover {
    background: #219a52;
}

.link-item small {
    color: #7f8c8d;
    font-style: italic;
}

.admit-card-alert {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

.admit-card-alert h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.alert-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quick-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .dates-grid {
        grid-template-columns: 1fr;
    }
    
    .fee-tables {
        grid-template-columns: 1fr;
    }
    
    .age-limits {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 22px;
    }
}
}