/* ================================
   Chat Name Prompt Styles (inline in chat panel)
   ================================ */
.chat-name-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    min-height: 200px;
}
.chat-name-prompt.hidden {
    display: none;
}
.chat-name-prompt-content {
    text-align: center;
    width: 100%;
}
.chat-name-prompt-content h3 {
    margin-bottom: 8px;
    color: var(--primary-orange);
    font-size: 22px;
}
.chat-name-prompt-content p {
    margin-bottom: 16px;
    color: var(--dark-brown);
    font-size: 14px;
    line-height: 1.4;
}
.chat-name-prompt-content .chat-input {
    width: 100%;
    margin-bottom: 12px;
}
.chat-name-prompt-content .chat-send-btn {
    width: 100%;
}
/* SecureGuard Insurance - Main Stylesheet with Image Support */
/* Inspired by Brewlife Coffee Design */

/* ================================
   CSS Variables / Color Palette
   ================================ */
:root {
    --primary-orange: #E07B39;
    --dark-orange: #D66A28;
    --light-orange: #F5A623;
    --cream-bg: #FDF6F0;
    --light-peach: #FAE5D3;
    --dark-brown: #2C1810;
    --medium-brown: #5D4037;
    --steel-blue: #5B7C99;
    --white: #FFFFFF;
    --gray-text: #8B8680;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   Reset & Base Styles
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--cream-bg);
    color: var(--dark-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================================
   Header & Navigation
   ================================ */
header {
    background: var(--cream-bg);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(253, 246, 240, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* Adjust spacing easily here */
  text-decoration: none;
  color: var(--dark-brown);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Optional: Make it scale down nicely on mobile */
@media (max-width: 600px) {
  .logo {
    font-size: 18px;
    gap: 7.5px;
  }
  .logo-icon-img {
    width: 45px;
    height: 45px;
  }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--dark-brown);
}

.btn-shop {
    background: var(--dark-brown);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
    white-space: nowrap;
}

.btn-shop:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1001;
}

.lang-btn {
    width: 25px;
    height: 25px;
    border: 2px solid transparent;
    border-radius: 90px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
}

.lang-btn-en {
    background-image: url('resources/img/flag-us.png');
}

.lang-btn-es {
    background-image: url('resources/img/flag-es.png');
}

.lang-btn:hover {
    border-color: var(--primary-orange);
    transform: scale(1.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.lang-btn.active {
    border-color: var(--dark-orange);
    box-shadow: 0 2px 8px rgba(224, 123, 57, 0.5);
    opacity: 75%;
}

.flag-icon {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    cursor: pointer;
}

.burger {
    width: 24px;
    height: 2px;
    background: var(--dark-brown);
    margin: 5px 0;
    transition: var(--transition);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    display: flex;
    align-items: center;
    min-height: 55vh;
    padding: 120px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.hero-tag {
    color: var(--primary-orange);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--dark-brown);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--medium-brown);
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(224, 123, 57, 0.3);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-circle {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

/* Hero Insurance Icon - Now supports both emoji and image */
.insurance-icon {
    font-size: 120px;
    color: var(--cream-bg);
    opacity: 0.9;
    animation: pulse 3s ease-in-out infinite;
}

.insurance-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Changed from 'contain' to 'cover' - this makes it fill the space */
    border-radius: 50%;  /* Makes the image itself circular */
    /* Remove the filter line so your actual image shows, not white */
    animation: pulse 3s ease-in-out infinite;
}

/* Bean decorations */
.bean-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--medium-brown);
    border-radius: 50%;
    opacity: 0.1;
}

.bean-1 { top: 10%; left: 5%; animation: float 8s ease-in-out infinite; }
.bean-2 { top: 70%; left: 10%; animation: float 6s ease-in-out infinite reverse; }
.bean-3 { top: 20%; right: 10%; animation: float 7s ease-in-out infinite; }

/* ================================
   Insurance Selection Section
   ================================ */
.insurance-selection {
    background: var(--white);
    padding: 60px 40px 40px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    color: var(--primary-orange);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Insurance Cards with Hover Effect */
.insurance-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 60px;
}

.insurance-card {
    flex: 1;
    max-width: 400px;
    background: var(--light-peach);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.insurance-card.active {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 10;
}

.insurance-card.inactive {
    transform: scale(0.95);
    opacity: 0.5;
    filter: grayscale(0.8);
}

.insurance-card:not(.active):not(.inactive):hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-image {
    height: 300px;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.life-insurance .card-image {
    background: var(--steel-blue);
}

/* Card Image Icon - Now supports both emoji and image */
.card-image-icon {
    font-size: 100px;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.card-image-icon-img {
    width: 100%;  /* Increased from 120px */
    height: 100%; /* Increased from 120px */
    object-fit: cover;  /* Changed from 'contain' to 'cover' */
    /* Remove the filter line to show your actual image colors */
    z-index: 2;
    position: relative;
}

.card-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.card-details {
    padding: 40px;
    background: var(--white);
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 16px;
    color: var(--primary-orange);
    font-style: italic;
    margin-bottom: 20px;
}

.life-insurance .card-subtitle {
    color: var(--steel-blue);
}

.card-description {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 15px;
}

/* ================================
   Features Section
   ================================ */
.features-section {
    background: var(--cream-bg);
    padding: 120px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Feature Icon - Now supports both emoji and image */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.feature-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);  /* Makes image white */
}

/* If you want colored icons instead of white, remove the filter line above */

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.feature-text {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 15px;
}

/* Rest of CSS remains the same... */

/* ================================
   CTA Section
   ================================ */
.cta-section {
    background: var(--steel-blue);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff11" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--primary-orange);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--dark-orange);
    transform: scale(1.05);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border: 2px solid var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--steel-blue);
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
    background: var(--white);
    padding: 80px 40px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-right: 20px;
}

.contact-tag {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 40px;
    line-height: 1.2;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item .icon {
    font-size: 18px;
}

.contact-item a {
    color: var(--medium-brown);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-orange);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--medium-brown);
    padding: 4px 0;
}

.hour-item span:first-child {
    font-weight: 500;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ================================
   Contact Form Styles
   ================================ */
.contact-form-wrapper {
    background: var(--cream-bg);
    padding: 40px;
    border-radius: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.required {
    color: var(--primary-orange);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(224, 123, 57, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-text);
    cursor: pointer;
}

.btn-submit {
    background: var(--primary-orange);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 123, 57, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* ================================
   Appointment Button
   ================================ */
.btn-appointment {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    padding: 14px 24px;
    background: var(--primary-orange);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(224, 123, 57, 0.2);
}

.btn-appointment:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 123, 57, 0.3);
}

.btn-appointment:active {
    transform: translateY(0);
}

/* ================================
   Footer
   ================================ */
footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 60px 40px 30px;
}

/* ================================
   Chat Widget
   ================================ */
.chat-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 26px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1100;
}

.chat-fab:hover { background: var(--dark-orange); transform: translateY(-4px); }

.chat-panel {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 340px;
    max-height: 520px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1100;
    border: 1px solid #eee;
}

.chat-panel.hidden { display: none; }

.chat-header { background: var(--primary-orange); color: var(--white); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; }
.chat-title { font-size: 15px; font-weight: 600; }
.chat-close { background: transparent; border: none; color: var(--white); font-size: 20px; cursor: pointer; line-height: 1; }

.chat-messages {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    background: var(--cream-bg);
    font-size: 14px;
}

.chat-msg { padding: 8px 12px; border-radius: 14px; max-width: 80%; line-height: 1.3; word-wrap: break-word; }
.chat-msg.user { background: var(--primary-orange); color: var(--white); align-self: flex-end; }
.chat-msg.agent { background: var(--steel-blue); color: var(--white); align-self: flex-start; }

.chat-form { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid #e5e5e5; background: var(--white); }
.chat-input { flex: 1; padding: 10px 12px; border: 1px solid #ccc; border-radius: 12px; font-size: 14px; }
.chat-input:focus { outline: none; border-color: var(--primary-orange); box-shadow: 0 0 0 3px rgba(224,123,57,0.15); }
.chat-send-btn { background: var(--primary-orange); color: var(--white); border: none; padding: 10px 16px; border-radius: 12px; cursor: pointer; font-size: 14px; font-weight: 600; transition: var(--transition); }
.chat-send-btn:hover { background: var(--dark-orange); }

@media (max-width: 480px) {
  .chat-panel { right: 10px; left: 10px; width: auto; bottom: 90px; }
  .chat-fab { bottom: 16px; right: 16px; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-orange);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* ================================
   Animations
   ================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .language-switcher {
        position: fixed;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
        z-index: 1001;
        margin-left: 0;
        gap: 4px;
        flex-direction: column;
    }

    .lang-btn {
        font-size: 20px;
        padding: 5px 8px;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: var(--white);
        flex-direction: column;
        padding: 80px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
    }

    nav ul.active {
        right: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .insurance-icon-img {
        width: 120px;
        height: 120px;
    }

    .insurance-cards {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 32px;
    }

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

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-circle {
        width: 250px;
        height: 250px;
    }

    .insurance-icon-img {
        width: 100%;
        height: 100%;
    }

    .card-image-icon-img {
        width: 100%;
        height: 100%;
    }
}