/* ---------- RESET ---------- */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fa;
    color:#333;
    line-height:1.7;
}
/* ---------- HEADER ---------- */
.page-header{
    background:#C1121F;
    padding:18px 8%;
}
.container{
    max-width:1200px;
    margin:auto;
}
.back-button{
    color:white;
    text-decoration:none;
    font-weight:bold;
    font-size:1rem;
}
.back-button:hover{
    text-decoration:underline;
}
/* ---------- HERO ---------- */
.hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
        linear-gradient(rgba(18,58,111,.78),
        rgba(18,58,111,.78)),
        url("images/aed-hero.jpg");
    background-size:cover;
    background-position:center;
    padding:80px 8%;
}
.hero-overlay{
    max-width:900px;
    background:white;
    padding:60px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 18px 40px rgba(0,0,0,.20);
}
.hero h1{
    font-size:3.3rem;
    color:#123A6F;
    margin-bottom:25px;
}
.hero p{
    font-size:1.2rem;
    color:#555;
    margin-bottom:40px;
    line-height:1.9;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.primary-button{
    background:#C1121F;
    color:white;
    text-decoration:none;
    padding:18px 36px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}
.primary-button:hover{
    background:#99131B;
    transform:translateY(-3px);
}
.secondary-button{
    border:2px solid #123A6F;
    color:#123A6F;
    text-decoration:none;
    padding:18px 36px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}
.secondary-button:hover{
    background:#123A6F;
    color:white;
}
/* ---------- MOBILE ---------- */
@media (max-width:768px)
.hero h1{ 
    font-size:2.3rem;
}
.hero-overlay{
    padding:40px 30px;
}
.hero p{
    font-size:1.05rem;
}
.hero-buttons{
    flex-direction:column;
}
.primary-button,
.secondary-button{
    width:100%;
}
/* ---------- WHY EVERY MINUTE MATTERS ---------- */
.why-aed{
    padding:100px 8%;
    background:#f5f7fa;
    text-align:center;
}
.why-aed h2{
    font-size:2.9rem;
    color:#123A6F;
    margin-bottom:20px;
}
.section-intro{
    max-width:900px;
    margin:0 auto 70px;
    font-size:1.15rem;
    color:#555;
    line-height:1.9;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}
.why-card{
    background:white;
    padding:40px;
    border-radius:22px;
    border-top:6px solid #C1121F;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    transition:.35s;
    text-align:left;
}
.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.why-icon{
    font-size:3.5rem;
    margin-bottom:25px;
}
.why-card h3{
    color:#123A6F;
    font-size:1.6rem;
    margin-bottom:18px;
}
.why-card p{
    color:#555;
    line-height:1.8;
    font-size:1rem;
}
/* ---------- AED PRODUCTS ---------- */
.aed-products{
    padding:100px 8%;
    background:white;
    text-align:center;
}
.aed-products h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:20px;
}
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    margin-top:60px;
}
.product-card{
    background:#F7F8FA;
    padding:40px;
    border-radius:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.3s;
}
.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.16);
}
.product-icon{
    font-size:3.5rem;
    margin-bottom:20px;
}
.product-card h3{
    color:#123A6F;
    margin-bottom:18px;
    font-size:1.6rem;
}
.product-card p{
    color:#555;
    margin-bottom:25px;
    line-height:1.8;
}
.product-card ul{
    list-style:none;
    padding:0;
}
.product-card li{
    padding:8px 0;
    color:#444;
}
/* ---------- FEATURED AED MODELS ---------- */
.featured-aeds{
    padding:100px 8%;
    background:#ffffff;
    text-align:center;
}
.featured-aeds h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:20px;
}
.featured-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:60px;
}
.featured-card{
    background:#F7F8FA;
    padding:40px;
    border-radius:22px;
    border-top:6px solid #123A6F;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    transition:.3s;
    text-align:left;
}
.featured-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.featured-icon{
    font-size:3.5rem;
    margin-bottom:20px;
}
.featured-card h3{
    color:#123A6F;
    margin-bottom:15px;
    font-size:1.5rem;
}
.featured-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}
.featured-card ul{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}
.featured-card li{
    padding:8px 0;
    color:#444;
}
.quote-button{
    display:inline-block;
    background:#C1121F;
    color:white;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}
.quote-button:hover{
    background:#123A6F;
}
/* ---------- PROGRAM MANAGEMENT ---------- */
.program-management{
    padding:100px 8%;
    background:#f5f7fa;
    text-align:center;
}
.program-management h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:20px;
}
.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    margin-top:60px;
}
.program-card{
    background:white;
    padding:40px;
    border-radius:22px;
    border-top:6px solid #C1121F;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    transition:.3s;
    text-align:left;
}
.program-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.program-icon{
    font-size:3.5rem;
    margin-bottom:20px;
}
.program-card h3{
    color:#123A6F;
    margin-bottom:15px;
    font-size:1.5rem;
}
.program-card p{
    color:#555;
    line-height:1.8;
}
/* ---------- AED ACCESSORIES ---------- */
.aed-accessories{
    padding:100px 8%;
    background:#ffffff;
    text-align:center;
}
.aed-accessories h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:20px;
}
.accessories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    margin-top:60px;
}
.accessory-card{
    background:#f7f8fa;
    padding:40px;
    border-radius:22px;
    border-top:6px solid #123A6F;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    transition:.3s;
    text-align:left;
}
.accessory-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.accessory-icon{
    font-size:3.5rem;
    margin-bottom:20px;
}
.accessory-card h3{
    color:#123A6F;
    margin-bottom:15px;
    font-size:1.5rem;
}
.accessory-card p{
    color:#555;
    line-height:1.8;
}
/* ---------- WHY CHOOSE VITALRESPONSE ---------- */
.why-vitalresponse{
    padding:100px 8%;
    background:#f5f7fa;
    text-align:center;
}
.why-vitalresponse h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:20px;
}
.why-vr-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    margin-top:60px;
}
.why-vr-card{
    background:white;
    padding:40px;
    border-radius:22px;
    border-top:6px solid #C1121F;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    transition:.3s;
    text-align:left;
}
.why-vr-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.why-vr-icon{
    font-size:3.5rem;
    margin-bottom:20px;
}
.why-vr-card h3{
    color:#123A6F;
    margin-bottom:15px;
    font-size:1.5rem;
}
.why-vr-card p{
    color:#555;
    line-height:1.8;
}
/* ---------- REQUEST A QUOTE ---------- */
.aed-quote{
    padding:110px 8%;
    background:linear-gradient(135deg,#123A6F,#0F2E57);
    color:white;
    text-align:center;
}
.quote-container{
    max-width:1200px;
    margin:auto;
}
.aed-quote h2{
    font-size:3rem;
    margin-bottom:20px;
}
.quote-intro{
    max-width:850px;
    margin:0 auto 60px;
    line-height:1.8;
    font-size:1.15rem;
    color:#000000 !important;
}
.quote-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    margin-bottom:60px;
}
.quote-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:22px;
    padding:40px 30px;
    transition:.3s;
}
.quote-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.12);
}
.quote-icon{
    font-size:3.5rem;
    margin-bottom:20px;
}
.quote-card h3{
    margin-bottom:15px;
    font-size:1.5rem;
}
.quote-card p{
    color:#000000;
    line-height:1.8;
    margin-bottom:20px;
}
.quote-card h4{
    color:#FFD166;
    font-size:1.2rem;
}
.quote-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.primary-button,
.secondary-button{
    display:inline-block;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}
.primary-button{
    background:#C1121F;
    color:white;
}
.primary-button:hover{
    background:#9B0F18;
}
.secondary-button{
    background:white;
    color:#123A6F;
}
.secondary-button:hover{
    background:#EAEAEA;
}