/* :root {
    --primary-dark: #152238;
    --primary-red: #e94057;
    --primary-gray: #55606c;
    --light-gray: #f7f7f7;
    --white: #ffffff;

    --primary-dark-blue: #1A2342; 
            --secondary-red: #FF5A65; 
            --text-gray: #5D5D5D; 
            --accent-green: #4CAF50; 
            --background-color: #f7f7f7;
            --card-bg: #ffffff;
            --text-color: #1A2342;

} */


:root {
    /* Updated color scheme based on logo */
    --primary-dark: #1a1a1a; /* Dark black from logo text */
    --primary-red: #e31e24; /* Vibrant red from logo */
    --primary-green: #8bc34a; /* Fresh green from logo */
    --primary-orange: #ff9800; /* Orange/yellow from logo */
    --primary-gray: #555555;
    --light-gray: #f7f7f7;
    --white: #ffffff;

    /* Enhanced color palette */
    --primary-dark-blue: #1a1a1a; /* Changed to match logo's dark text */
    --secondary-red: #e31e24; /* Main red from logo */
    --accent-green: #8bc34a; /* Logo green */
    --accent-orange: #ff9800; /* Logo orange */
    --text-gray: #555555;
    --background-color: #f7f7f7;
    --card-bg: #ffffff;
    --text-color: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f5f5f5;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.3rem 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.menu-items {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.menu-item {
  position: relative;
  cursor: pointer;
}

.menu-item a {
  color: #16213E;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.menu-item a:hover {
  color: #E94560;
}

.menu-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #E94560;
  bottom: -6px;
  left: 0;
  transition: width 0.3s ease;
}

.menu-item:hover::after {
  width: 100%;
}

.active::after {
  width: 100%;
}

.active a {
  color: #E94560;
}

.toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #16213E;
  transition: color 0.3s ease;
}

.toggle-btn:hover {
  color: #E94560;
}

.button {
  background-color: #E94560;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #d63853;
  transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .menu-items {
    position: absolute;
    flex-direction: column;
    background-color: #ffffff;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    gap: 0.5rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
    z-index: 1;
  }
  
  .menu-items.open {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .menu-item {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }
  
  .menu-item::after {
    display: none;
  }
  
  .toggle-btn {
    display: block;
  }
  
  .cta-btn {
    display: none;
  }
  
  .mobile-cta {
    display: block;
    margin: 1rem auto;
    width: 80%;
  }
  
  .desktop-cta {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }
}

/* Demo content */
.content {
  margin-top: 80px;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.content h1 {
  color: #16213E;
  text-align: center;
}

.content p {
  max-width: 800px;
  text-align: center;
  color: #555;
  line-height: 1.6;
}

.home-section {
  padding-top: 70px; /* Space for fixed navbar */
  width: 100%;
  position: relative;
}

/* Slider */
.slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 600px;
}

.slides {
  width: 300%; /* 3 slides at 100% each */
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 33.33%; /* Each slide takes up 1/3 of the total width */
  height: 100%;
  position: relative;
}

.slide-1 { background: linear-gradient(135deg, #16213E, #0F1729); }
.slide-2 { background: linear-gradient(135deg, #1A3365, #0D1B38); }
.slide-3 { background: linear-gradient(135deg, #243B55, #141E30); }

.slide-content {
  width: 85%;
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 5fr 7fr; /* 5:7 ratio as requested */
  gap: 30px;
  align-items: center;
  padding: 20px;
}

.slide-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: white;
}

.slide-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.slide-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.primary-btn {
  background-color: #E94560;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background-color: #d63853;
  transform: translateY(-2px);
}

.secondary-btn {
  background-color: transparent;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.slide-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mockup {
  width: 100%;
  max-width: 600px;
  height: auto;
  position: relative;
  z-index: 2;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(233, 69, 96, 0.1);
  z-index: 1;
}

.decoration-1 {
  width: 250px;
  height: 250px;
  right: -50px;
  top: 100px;
}

.decoration-2 {
  width: 150px;
  height: 150px;
  left: 50px;
  bottom: 100px;
}

/* Slider Controls */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: #E94560;
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.arrow svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Stats Bar */
.stats-bar {
  background-color: white;
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stats-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #16213E;
}

.stat-label {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .slide-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .slide-buttons {
    justify-content: center;
  }
  
  .slide-text {
    order: 1;
  }
  
  .slide-image {
    order: 0;
    margin-bottom: 2rem;
  }
  
  .mockup {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .slide-text h1 {
    font-size: 2rem;
  }
  
  .stats-container {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .stat {
    width: 40%;
  }
}

@media (max-width: 480px) {
  .slide-text h1 {
    font-size: 1.8rem;
  }
  
  .slide-text p {
    font-size: 1rem;
  }
  
  .stat {
    width: 100%;
  }
}


.footer {
  background-color: #16213E;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.footer-logo {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo svg {
  max-width: 200px;
  height: auto;
}

.footer-logo p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #E94560;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.2rem 0;
}

.footer-links a:hover {
  color: #E94560;
  transform: translateX(5px);
}

.footer-contact {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact-item i {
  color: #E94560;
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

.social-links {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #E94560;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.footer-bottom {
  grid-column: span 12;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-menu {
  display: flex;
  gap: 1.5rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #E94560;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-logo,
  .footer-links,
  .footer-contact,
  .social-links {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-logo,
  .footer-links,
  .footer-contact,
  .social-links {
    grid-column: span 1;
  }
  
  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* Page Demo Styles */
.demo-content {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f9fc;
  padding: 2rem;
  text-align: center;
}

.demo-content h2 {
  color: #16213E;
  margin-bottom: 1rem;
}


/* Contact Section Styles - Fixed Version */
.contact-section {
padding-top: 100px; /* Space for the fixed navbar */
padding-bottom: 60px;
background-color: #f5f5f5;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.contact-section .page-header {
background-color: transparent;
padding: 30px 0;
text-align: center;
margin-bottom: 20px;
}

.contact-section .page-header h1 {
color: #16213E;
font-size: 36px;
margin-bottom: 15px;
}

.contact-section .page-header p {
color: #555;
font-size: 18px;
max-width: 800px;
margin: 0 auto;
}

.contact-section .contact-container {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 40px;
}

.contact-section .contact-info {
flex: 1;
min-width: 300px;
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-section .contact-info h2 {
color: #E94560;
margin-bottom: 30px;
font-size: 24px;
position: relative;
padding-bottom: 15px;
}

.contact-section .contact-info h2:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 3px;
background-color: #E94560;
}

.contact-section .info-item {
display: flex;
margin-bottom: 25px;
align-items: flex-start;
}

.contact-section .info-item i {
color: #E94560;
font-size: 20px;
margin-right: 15px;
min-width: 30px;
text-align: center;
}

.contact-section .info-item .content h3 {
font-size: 18px;
margin-bottom: 5px;
color: #16213E;
}

.contact-section .info-item .content p,
.contact-section .info-item .content a {
color: #555;
font-size: 16px;
line-height: 1.6;
text-decoration: none;
}

.contact-section .info-item .content a:hover {
color: #E94560;
}

.contact-section .contact-social-links {
margin-top: 40px;
}

.contact-section .contact-social-links h3 {
font-size: 18px;
margin-bottom: 15px;
color: #16213E;
}

.contact-section .contact-social-icons {
display: flex;
gap: 15px;
}

.contact-section .contact-social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: #f5f5f5;
border-radius: 50%;
color: #16213E;
transition: all 0.3s ease;
}

.contact-section .contact-social-icons a:hover {
background-color: #E94560;
color: #fff;
}

.contact-section .contact-form {
flex: 2;
min-width: 300px;
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-section .contact-form h2 {
color: #E94560;
margin-bottom: 30px;
font-size: 24px;
position: relative;
padding-bottom: 15px;
}

.contact-section .contact-form h2:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 3px;
background-color: #E94560;
}

.contact-section .form-group {
margin-bottom: 20px;
}

.contact-section .form-group label {
display: block;
margin-bottom: 8px;
/* font-weight: 600; */
color: #16213E;
}

.contact-section .form-control {
width: 100%;
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
transition: border-color 0.3s;
}

.contact-section .form-control:focus {
border-color: #E94560;
outline: none;
}

.contact-section textarea.form-control {
min-height: 150px;
resize: vertical;
}

.contact-section .submit-btn {
background-color: #E94560;
color: #fff;
border: none;
padding: 14px 30px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
font-weight: 600;
}

.contact-section .submit-btn:hover {
background-color: #d63853;
transform: translateY(-2px);
}

.contact-section .map-container {
margin-top: 30px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
height: 400px;
}

@media (max-width: 768px) {
.contact-section .contact-container {
flex-direction: column;
}
}


.services {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--primary-gray);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--primary-gray);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
    bottom: -10px;
    left: 0;
}

.about-text p {
    color: var(--primary-gray);
    margin-bottom: 25px;
    line-height: 1.7;
    margin-top: 20px;
}

.mission-vision {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.mission, .vision {
    flex: 1;
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission h3, .vision h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.mission h3::after, .vision h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
    bottom: 0;
    left: 0;
}

.mission p, .vision p {
    color: var(--primary-gray);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    border-top: 5px solid var(--primary-red);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 35, 66, 0.2);
}

.package-card h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark-blue);
    position: relative;
}

.package-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-red);
    border-radius: 1.5px;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.card-animation {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0.8rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .package-card {
        padding: 1.2rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }

}

.header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name h2 {
    color: var(--primary-dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.brand-name h3 {
    color: var(--secondary-red);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.brand-name p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 3px;
}

.package h1 {
    font-size: 2.5rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.package h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.banner {
  background-color: #8b0f3c;
  color: white;
  padding: 2rem;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-description {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .banner-title {
      font-size: 1.8rem;
  }
  
  .banner-description {
      font-size: 1rem;
  }
}