/* Cleaned / Consolidated style.css */

/* Base reset + fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root{
  --primary-red: #ff0000;
  --dark-red: #c2171d;
  --black: #222222;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #444444;
}

/* Page body */
body{
  background-color: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('https://express.jilito.com/assets/images/pages/background.jpg');
  background-size: cover;
  background-position: center;
}

/* Header */
header{
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
  padding:15px 20px;
}

.logo{ display:flex; align-items:center; }

.logo h1{
  color:var(--primary-red);
  font-size:32px;
  font-weight:700;
  margin-left:10px;
}

.logo span{
  display:inline-block;
  width:40px;
  height:40px;
  background:var(--primary-red);
  border-radius:50%;
  color:var(--white);
  text-align:center;
  line-height:40px;
  font-weight:700;
}

/* Nav */
nav ul{
  display:flex;
  list-style:none;
}

nav ul li{ margin-left:25px; }

nav ul li a{
  text-decoration:none;
  color:var(--black);
  font-weight:500;
  font-size:16px;
  transition:color .3s;
}

nav ul li a:hover{ color:var(--primary-red); }

/* Auth buttons */
.auth-buttons{ display:flex; gap:15px; }

.btn{
  padding:10px 20px;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
  transition:all .3s ease;
  border:none;
  font-size:15px;
}

.btn-login{
  background:transparent;
  border:2px solid var(--primary-red);
  color:var(--primary-red);
}
.btn-login:hover{ background:var(--primary-red); color:var(--white); }

.btn-signup{
  background:var(--primary-red);
  color:var(--white);
}
.btn-signup:hover{
  background:var(--dark-red);
  transform:translateY(-3px);
  box-shadow:0 5px 15px rgba(227,30,37,0.3);
}

/* Hero */
.hero{
  /* fallback remote and local images provided (local preferred) */
  background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url('https://express.jilito.com/assets/images/pages/background.jpg');
  background-size:cover;
  background-position:center;
  height:70vh;
  display:flex;
  align-items:center;
  color:var(--white);
  position:relative;
  text-align:center;
}

.hero-content{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.hero h1,
.hero h2{
  font-size:3.5rem;
  margin-bottom:20px;
  font-weight:700;
}

.hero p{
  font-size:1.5rem;
  max-width:800px;
  margin:0 auto 40px;
  font-weight:300;
}

/* Tracking / hero sub-block */
.tracking-section{
  background:var(--white);
  padding:15px;
  border-radius:15px;
  max-width:800px;
  margin:0 auto;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.tracking-section h3{
  color:var(--primary-red);
  margin-bottom:20px;
  font-size:24px;
}

.tracking-form{ display:flex; justify-content:center; gap:15px; }

.tracking-input{
  flex:1;
  padding:15px 20px;
  border:2px solid #ddd;
  border-radius:50px;
  font-size:16px;
  outline:none;
  transition:border-color .3s;
}
.tracking-input:focus{ border-color:var(--primary-red); }

.btn-track{
  background:var(--primary-red);
  color:var(--white);
  padding:15px 35px;
  border-radius:50px;
  font-weight:600;
  font-size:16px;
  border:none;
  cursor:pointer;
}
.btn-track:hover{ background:var(--dark-red); }

/* Sections: Stats / Partners / Stories / CTA */
.stats{
  background:var(--light-gray);
  padding:80px 20px;
  text-align:center;
}

.stats-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.stat-card{
  background:var(--white);
  padding:40px 20px;
  border-radius:15px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:transform .3s;
}
.stat-card:hover{ transform:translateY(-10px); }

.stat-icon{ font-size:50px; color:var(--primary-red); margin-bottom:20px; }
.stat-number{ font-size:3rem; font-weight:700; color:var(--primary-red); margin-bottom:10px; }
.stat-text{ font-size:18px; color:var(--dark-gray); }

/* Partners */
.partners{
  padding:80px 20px;
  text-align:center;
  background:var(--white);
}

.partners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:40px;
  max-width:1200px;
  margin:0 auto;
}
.partner-logo{
  height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--light-gray);
  border-radius:10px;
  padding:20px;
  transition:all .3s;
}
.partner-logo:hover{ transform:scale(1.1); box-shadow:0 5px 15px rgba(0,0,0,.1); }
.partner-logo img{ max-width:100%; max-height:60px; filter:grayscale(100%); transition:filter .3s; }
.partner-logo:hover img{ filter:grayscale(0%); }

/* Stories */
.stories{ padding:80px 20px; background:var(--light-gray); }
.stories-container{ max-width:1200px; margin:0 auto; }
.story-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
  margin-top:50px;
}
.story-card{
  background:var(--white);
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:transform .3s;
}
.story-card:hover{ transform:translateY(-10px); }
.story-img{ height:200px; background-size:cover; background-position:center; }
.story-content{ padding:25px; }
.story-content h4{ font-size:20px; margin-bottom:10px; color:var(--primary-red); }
.story-content p{ color:var(--dark-gray); margin-bottom:15px; line-height:1.6; }
.story-meta{ display:flex; justify-content:space-between; color:var(--dark-gray); font-size:14px; }

/* About / Values / Timeline / Team / CTA sections (About & Terms share many styles) */
.about-section,
.values-section,
.timeline-section,
.team-section,
.privacy-container,
.terms-container{
  padding:80px 20px;
  max-width:1200px;
  margin:0 auto;
}

/* Shared section titles */
.section-title{
  text-align:center;
  font-size:2.5rem;
  margin-bottom:15px;
  color:var(--black);
  position:relative;
}
.section-title:after{
  content:'';
  display:block;
  width:80px;
  height:4px;
  background:var(--primary-red);
  margin:15px auto 30px;
}

.section-subtitle{
  color:var(--dark-gray);
  max-width:700px;
  margin:0 auto 60px;
  font-size:1.2rem;
  text-align:center;
}

/* About layout */
.about-content{ display:grid; grid-template-columns:1fr 1fr; gap:50px; margin-top:50px; align-items:center; }
.about-image{
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  height:450px;
  background:url('https://express.jilito.com/assets/images/pages/our-story.jpg') center/cover;
}
.about-text h3{ color:var(--primary-red); margin:25px 0 15px; font-size:24px; }
.about-text p{ color:var(--dark-gray); margin-bottom:20px; }

/* Values */
.values-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:30px; margin-top:50px; }
.value-card{ background:var(--white); padding:40px 30px; border-radius:10px; text-align:center; box-shadow:0 5px 15px rgba(0,0,0,0.05); transition:transform .3s; }
.value-card:hover{ transform:translateY(-10px); }
.value-icon{ font-size:50px; color:var(--primary-red); margin-bottom:20px; }
.value-card h4{ font-size:22px; margin-bottom:15px; color:var(--black); }

/* Timeline */
.timeline{
  position:relative;
  max-width:1000px;
  margin:50px auto 0;
}
.timeline::after{
  content:'';
  position:absolute;
  width:4px;
  background:var(--primary-red);
  top:0;
  bottom:0;
  left:50%;
  margin-left:-2px;
}
.timeline-item{
  padding:10px 40px;
  position:relative;
  width:50%;
  box-sizing:border-box;
}
.timeline-item:nth-child(odd){ left:0; }
.timeline-item:nth-child(even){ left:50%; }
.timeline-content{
  padding:20px 30px;
  background:var(--light-gray);
  position:relative;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
.timeline-content h3{ color:var(--primary-red); margin-bottom:10px; }
.timeline-content .date{ font-weight:600; color:var(--dark-gray); margin-bottom:10px; display:block; }
.timeline-item::after{
  content:'';
  position:absolute;
  width:20px;
  height:20px;
  background:var(--white);
  border:4px solid var(--primary-red);
  top:20px;
  border-radius:50%;
  z-index:1;
}
.timeline-item:nth-child(odd)::after{ right:-12px; }
.timeline-item:nth-child(even)::after{ left:-12px; }

/* Team */
.team-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:30px; max-width:1200px; margin:50px auto 0; }
.team-member{ background:var(--white); border-radius:10px; overflow:hidden; box-shadow:0 5px 15px rgba(0,0,0,0.1); transition:transform .3s; }
.team-member:hover{ transform:translateY(-10px); }
.member-photo{ height:250px; background-size:cover; background-position:top; }
.member-info{ padding:20px; }
.member-info h4{ font-size:20px; color:var(--black); margin-bottom:5px; }
.member-info p{ color:var(--primary-red); font-weight:500; margin-bottom:15px; }
.social-links a{
  display:inline-block;
  width:36px;
  height:36px;
  background:var(--light-gray);
  border-radius:50%;
  line-height:36px;
  color:var(--primary-red);
  margin:0 5px;
  transition:all .3s;
}
.social-links a:hover{ background:var(--primary-red); color:var(--white); transform:translateY(-3px); }

/* CTA */
.cta, .cta-section, .cta-section, .btn-cta{
  background:var(--primary-red);
  color:var(--white);
}
.cta{
  padding:100px 20px;
  text-align:center;
}
.cta h2{ font-size:2.5rem; margin-bottom:20px; }
.cta p{ max-width:700px; margin:0 auto 40px; font-size:18px; }
.btn-cta{
  background:var(--white);
  color:var(--primary-red);
  padding:15px 40px;
  font-size:18px;
  font-weight:600;
  border-radius:50px;
  border:none;
  cursor:pointer;
  transition:all .3s;
}
.btn-cta:hover{ transform:translateY(-5px); box-shadow:0 10px 25px rgba(0,0,0,0.2); }

/* Privacy / Terms / Main content helpers */
.privacy-container, .terms-container{ max-width:1200px; margin:80px auto; padding:0 20px; }
.privacy-section h2, .terms-section h2{ font-size:1.8rem; color:var(--primary-red); margin-bottom:20px; }
.privacy-section h3, .terms-section h3{ font-size:1.4rem; color:var(--black); margin:25px 0 15px; }
.privacy-section p, .terms-section p{ margin-bottom:15px; color:var(--dark-gray); }
.privacy-section ul, .terms-section ul{ margin-left:30px; margin-bottom:20px; }
.privacy-section li, .terms-section li{ margin-bottom:10px; color:var(--dark-gray); }
.highlight{ background:var(--light-gray); padding:20px; border-left:4px solid var(--primary-red); margin:20px 0; border-radius:0 5px 5px 0; }

.contact-card{ background:var(--light-gray); padding:30px; border-radius:10px; box-shadow:0 5px 15px rgba(0,0,0,0.05); }
.contact-card h3{ color:var(--primary-red); margin-bottom:20px; }
.contact-info{ display:flex; flex-wrap:wrap; gap:20px; }
.contact-item{ display:flex; align-items:flex-start; flex:1 1 300px; }
.contact-icon{ width:50px; height:50px; background:var(--primary-red); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-right:15px; flex-shrink:0; }
.contact-icon i{ color:var(--white); font-size:20px; }
.contact-details h4{ margin-bottom:5px; color:var(--black); }
.contact-details p{ color:var(--dark-gray); }

/* Acceptance / Buttons */
.acceptance-box{ background:var(--light-gray); padding:30px; border-radius:10px; margin:40px 0; text-align:center; }
.acceptance-box h3{ color:var(--primary-red); margin-bottom:20px; }
.btn-accept{ background:var(--primary-red); color:var(--white); padding:12px 35px; font-size:16px; font-weight:600; border-radius:50px; border:none; cursor:pointer; transition:all .3s; }
.btn-accept:hover{ background:var(--dark-red); transform:translateY(-3px); box-shadow:0 5px 15px rgba(227,30,37,0.3); }

/* Footer */
footer{
  background:var(--black);
  color:var(--white);
  padding:60px 20px 30px;
}
.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}
.footer-logo{ font-size:28px; font-weight:700; color:var(--white); margin-bottom:20px; }
.footer-logo span{ color:var(--primary-red); }
.footer-about p{ margin-bottom:20px; line-height:1.6; color:#aaa; }
.footer-heading{ font-size:20px; margin-bottom:20px; position:relative; }
.footer-heading::after{ content:''; position:absolute; left:0; bottom:-10px; width:50px; height:3px; background:var(--primary-red); }
.footer-links ul{ list-style:none; }
.footer-links ul li{ margin-bottom:12px; }
.footer-links ul li a{ text-decoration:none; color:#aaa; transition:color .3s; }
.footer-links ul li a:hover{ color:var(--primary-red); }
.footer-contact p{ display:flex; align-items:center; margin-bottom:15px; color:#aaa; }
.footer-contact i{ margin-right:10px; color:var(--primary-red); }
.copyright{ text-align:center; padding-top:30px; margin-top:40px; border-top:1px solid #444; color:#aaa; }

/* Utility */
a{ text-decoration:none; color:red; }
.alert{ width:90%; text-align:center; margin:auto; padding:10px; }

/* Responsive */
@media (max-width: 1200px) {
    .signup-container {gap: 30px;}
}

@media (max-width: 992px){
  .timeline::after{ left:31px; }
  .timeline-item{ width:100%; padding-left:70px; padding-right:25px; }
  .timeline-item:nth-child(even){ left:0; }
  .timeline-item::after{ left:21px; }
  .signup-container {flex-direction: column;}
  .signup-form-container,.signup-benefits {width: 100%;}
  .benefit-card {padding: 15px;}
}

@media (max-width: 768px){
  .header-container{padding:15px; }
  nav ul{ margin:20px 0; flex-wrap:wrap; justify-content:center; }
  nav ul li{ margin:5px 10px; }
  .hero h1, .hero h2{ font-size:2.5rem; }
  .hero p {font-size:1.2rem; }
  .about-content {grid-template-columns:1fr; }
  .section-title{ font-size:2rem; }
  .contact-info{ flex-direction:column; }
  .tracking-form{ flex-direction:column; }
  .btn{ width:100%; margin-top:10px; }
  .signup-header h2 {font-size: 28px;}
  .form-row {flex-direction: column;gap: 15px;}
  .benefit-card {flex-direction: column;text-align: center;}
  .benefit-icon {margin: 0 auto 15px;}
}

@media (max-width: 576px) {
    .signup-header h2 {
        font-size: 24px;
    }
    
    .signup-header p {
        font-size: 16px;
    }
    
    .login-body,
    .signup-form-container {
        padding: 20px;
    }
    
    .benefit-content h4 {
        font-size: 18px;
    }
    
    .signup-btn {
        padding: 12px;
        font-size: 16px;
    }
    
    .city-dropdown {
        max-height: 200px;
    }
}
/* Login Container */
        .login-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-grow: 1;
            padding: 40px 20px;
        }
        
        .login-card {
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-width: 450px;
            overflow: hidden;
            position: relative;
        }
        
        .login-header {
            background: var(--primary-red);
            padding: 30px 20px;
            text-align: center;
            color: var(--white);
        }
        
        .login-header h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .login-header p {
            opacity: 0.9;
            font-size: 16px;
        }
        
        .login-body {
            padding: 30px;
        }
        
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-group {
            position: relative;
        }
        
        .form-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--dark-gray);
            font-size: 18px;
        }
        
        .login-field {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .login-field:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(227, 30, 37, 0.1);
        }
        
        .login-btn {
            background: var(--primary-red);
            color: var(--white);
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
            margin-top: 10px;
        }
        
        .login-btn:hover {
            background: var(--dark-red);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(227, 30, 37, 0.3);
        }
        
        .login-options {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .remember-me input {
            accent-color: var(--primary-red);
        }
        
        .forgot-password {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        
        .forgot-password:hover {
            opacity: 0.8;
        }
        
        .login-divider {
            display: flex;
            align-items: center;
            margin: 25px 0;
        }
        
        .login-divider::before,
        .login-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #ddd;
        }
        
        .login-divider span {
            padding: 0 15px;
            color: var(--dark-gray);
            font-size: 14px;
        }
        
        .social-login {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            border: none;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .social-btn:hover {
            transform: translateY(-5px);
        }
        
        .social-btn.facebook {
            background: #3b5998;
        }
        
        .social-btn.google {
            background: #db4437;
        }
        
        .social-btn.linkedin {
            background: #0077b5;
        }
        
        .signup-link {
            text-align: center;
            color: var(--dark-gray);
            margin-top: 20px;
        }
        
        .signup-link a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        
        .signup-link a:hover {
            opacity: 0.8;
        }
        
        
        
        /* Signup Container */
        .signup-container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            gap: 40px;
        }
        
        .signup-form-container {
            flex: 1;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 30px;
        }
        
        .signup-benefits {
            flex: 1;
        }
        
        .signup-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .signup-header h2 {
            font-size: 32px;
            color: var(--primary-red);
            margin-bottom: 10px;
        }
        
        .signup-header p {
            color: var(--dark-gray);
            font-size: 18px;
        }
        
        .signup-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-group {
            flex: 1;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-gray);
        }
        
        .signup-field {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .signup-field:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(227, 30, 37, 0.1);
        }
        
        .city-search {
            position: relative;
        }
        
        .city-search input {
            padding-right: 40px;
        }
        
        .city-search i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--dark-gray);
            font-size: 18px;
        }
        
        #cityDropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            max-height: 300px;
            overflow-y: auto;
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 100;
            display: none;
        }
        
        .city-option {
            padding: 10px 15px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .city-option:hover {
            background: rgba(227, 30, 37, 0.1);
        }
        
        .file-upload {
            border: 2px dashed #ddd;
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .file-upload:hover {
            border-color: var(--primary-red);
            background: rgba(227, 30, 37, 0.05);
        }
        
        .file-upload i {
            font-size: 20px;
            color: var(--primary-red);
            margin-bottom: 15px;
        }
        
        .file-upload p {
            color: var(--dark-gray);
            margin-bottom: 10px;
        }
        
        .file-upload span {
            color: var(--primary-red);
            font-weight: 500;
        }
        
        .file-input {
            display: none;
        }
        
        .terms-agreement {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        
        .terms-agreement input {
            margin-top: 5px;
            accent-color: var(--primary-red);
        }
        
        .terms-agreement label {
            color: var(--dark-gray);
            line-height: 1.5;
        }
        
        .terms-agreement a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 500;
        }
        
        .terms-agreement a:hover {
            text-decoration: underline;
        }
        
        .signup-btn {
            background: var(--primary-red);
            color: var(--white);
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
            margin-top: 20px;
        }
        
        .signup-btn:hover {
            background: var(--dark-red);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(227, 30, 37, 0.3);
        }
        
        .login-link {
            text-align: center;
            margin-top: 20px;
            color: var(--dark-gray);
        }
        
        .login-link a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
        }
        
        .login-link a:hover {
            text-decoration: underline;
        }
        
        /* Benefits Section */
        .benefits-container {
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 30px;
            height: 100%;
        }
        
        .benefits-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .benefits-header h3 {
            font-size: 28px;
            color: var(--primary-red);
            margin-bottom: 10px;
        }
        
        .benefits-header p {
            color: var(--dark-gray);
            max-width: 500px;
            margin: 0 auto;
        }
        
        .benefit-card {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .benefit-card:hover {
            background: rgba(227, 30, 37, 0.05);
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            background: rgba(227, 30, 37, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .benefit-icon i {
            font-size: 24px;
            color: var(--primary-red);
        }
        
        .benefit-content h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--black);
        }
        
        .benefit-content p {
            color: var(--dark-gray);
            line-height: 1.6;
        }