/* Heat Illness Prevention Page Styles */
.heat-prevention {
    --heat-primary: #6a3de8;
    --heat-primary-light: #8a65f0;
    --heat-primary-dark: #5227cf;
    --heat-secondary: #ff7e50;
    --heat-secondary-light: #ff9776;
    --heat-secondary-dark: #e56334;
    --heat-accent: #2eca8b;
    --heat-danger: #ff5252;
    --heat-gray-50: #f9fafb;
    --heat-gray-100: #f7f9fc;
    --heat-gray-200: #edf2f7;
    --heat-gray-300: #e2e8f0;
    --heat-gray-400: #cbd5e0;
    --heat-gray-500: #a0aec0;
    --heat-gray-600: #718096;
    --heat-gray-700: #4a5568;
    --heat-gray-800: #2d3748;
    --heat-gray-900: #1a202c;
    --heat-yellow: #F9DF74;
    --heat-orange: #F58F29;
    --heat-red: #E85F5C;
    --heat-dark-red: #BA3737;
    --heat-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --heat-box-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --heat-box-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --heat-box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --heat-transition: all 0.3s ease;
}

/* Hero Section */
.heat-prevention__hero {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(106, 61, 232, 0.9)), url('https://cdn.goquickcare.com/heat-illness-hero.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 5rem 0;
    margin-bottom: 0;
    border-radius: 0 0 var(--qc-radius-lg) var(--qc-radius-lg);
    overflow: hidden;
}

.heat-prevention__hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--heat-primary-light), var(--heat-orange));
}

.heat-prevention__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.heat-prevention__title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-shadow: var(--heat-text-shadow);
    line-height: 1.2;
}

.heat-prevention__subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.75rem;
    line-height: 1.55;
    max-width: 760px;
    opacity: 0.92;
}

.heat-prevention__hero-bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
    margin: 0 0 2rem 0;
    padding: 0;
    list-style: none;
    max-width: 760px;
}

.heat-prevention__hero-bullets li {
    position: relative;
    padding-left: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.heat-prevention__hero-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--heat-yellow), var(--heat-orange));
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.heat-prevention__hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.heat-prevention__button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--qc-radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--heat-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 200px;
}

.heat-prevention__button--primary {
    background-color: var(--heat-primary);
    border-color: var(--heat-primary);
    color: white;
    box-shadow: var(--heat-box-shadow-md);
}

.heat-prevention__button--primary:hover {
    background-color: var(--heat-primary-dark);
    border-color: var(--heat-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--heat-box-shadow-lg);
    color: white;
}

.heat-prevention__button--secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.heat-prevention__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--heat-box-shadow-md);
    color: white;
}

.heat-prevention__button-icon {
    margin-right: 0.5rem;
}

/* Breadcrumb */
.heat-prevention__breadcrumb-wrap {
    background-color: var(--qc-color-bg-white);
    border-bottom: 1px solid var(--qc-color-border);
}

.heat-prevention__breadcrumb-wrap .qc-breadcrumb {
    margin-bottom: 0;
    box-shadow: none;
    border-bottom: none;
}

/* Page Nav */
.heat-prevention__page-nav {
    background: linear-gradient(to bottom, #ffffff, var(--heat-gray-50));
    border-bottom: 1px solid var(--heat-gray-200);
}

.heat-prevention__page-nav-inner {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1.25rem 0;
}

.heat-prevention__page-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    background: white;
    border: 1px solid var(--heat-gray-200);
    border-radius: 999px;
    color: var(--heat-gray-800);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--heat-transition);
    box-shadow: var(--heat-box-shadow-sm);
}

.heat-prevention__page-nav-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--heat-box-shadow-md);
    border-color: rgba(106, 61, 232, 0.25);
    color: var(--heat-primary-dark);
}

.heat-prevention__page-nav-link .material-icons {
    font-size: 1.1rem;
    color: var(--heat-primary);
}

/* Understanding Heat Illness Section */
.heat-prevention__understanding {
    padding: 4rem 0;
    background-color: var(--heat-gray-50);
}

.heat-prevention__understanding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.heat-prevention__understanding-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heat-gray-900);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.heat-prevention__understanding-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--heat-primary), var(--heat-orange));
    border-radius: 2px;
}

.heat-prevention__understanding-content p {
    color: var(--heat-gray-700);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.heat-prevention__understanding-image {
    position: relative;
    border-radius: var(--qc-radius-lg);
    overflow: hidden;
    box-shadow: var(--heat-box-shadow-lg);
}

.heat-prevention__understanding-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.heat-prevention__understanding-image:hover img {
    transform: scale(1.03);
}

.heat-prevention__highlight-box {
    background-color: var(--heat-primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--qc-radius-md);
    margin: 1.75rem 0 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--heat-box-shadow-md);
}

.heat-prevention__highlight-box::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 110px;
    height: 110px;
    background: radial-gradient(var(--heat-primary-light), transparent 70%);
    opacity: 0.5;
    border-radius: 50%;
}

.heat-prevention__highlight-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.heat-prevention__highlight-content {
    opacity: 0.95;
    color: white !important;
    margin: 0;
    line-height: 1.6;
}

/* Snapshot */
.heat-prevention__snapshot {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--heat-gray-200);
}

.heat-prevention__snapshot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.heat-prevention__snapshot-card {
    background: var(--heat-gray-50);
    border-radius: var(--qc-radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--heat-gray-200);
    box-shadow: var(--heat-box-shadow-sm);
    transition: var(--heat-transition);
    position: relative;
    overflow: hidden;
}

.heat-prevention__snapshot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--heat-box-shadow-md);
    border-color: rgba(106, 61, 232, 0.25);
}

.heat-prevention__snapshot-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(106, 61, 232, 0.12);
    color: var(--heat-primary);
    margin-bottom: 1rem;
}

.heat-prevention__snapshot-icon .material-icons {
    font-size: 26px;
}

.heat-prevention__snapshot-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--heat-gray-900);
    margin-bottom: 0.5rem;
}

.heat-prevention__snapshot-text {
    color: var(--heat-gray-700);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Symptoms Comparison Section */
.heat-prevention__symptoms {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, var(--heat-gray-100));
}

.heat-prevention__section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.heat-prevention__section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--heat-gray-900);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.heat-prevention__section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--heat-primary-light), var(--heat-primary-dark));
    border-radius: 2px;
}

.heat-prevention__section-subtitle {
    font-size: 1.125rem;
    color: var(--heat-gray-700);
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.6;
}

.heat-prevention__symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.heat-prevention__symptom-card {
    background-color: white;
    border-radius: var(--qc-radius-lg);
    padding: 2rem;
    box-shadow: var(--heat-box-shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--heat-transition);
}

.heat-prevention__symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--heat-box-shadow-lg);
}

.heat-prevention__symptom-card--exhaustion {
    border-top: 4px solid var(--heat-yellow);
}

.heat-prevention__symptom-card--stroke {
    border-top: 4px solid var(--heat-red);
}

.heat-prevention__symptom-severity {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.heat-prevention__symptom-severity--warning {
    background-color: var(--heat-yellow);
    color: var(--heat-gray-800);
}

.heat-prevention__symptom-severity--danger {
    background-color: var(--heat-red);
    color: white;
}

.heat-prevention__symptom-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--heat-gray-900);
    margin-bottom: 1.5rem;
    padding-right: 7rem;
}

.heat-prevention__symptom-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.heat-prevention__symptom-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--heat-gray-700);
}

.heat-prevention__symptom-item:last-child {
    margin-bottom: 0;
}

.heat-prevention__symptom-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.heat-prevention__symptom-card--exhaustion .heat-prevention__symptom-item::before {
    background-color: var(--heat-yellow);
}

.heat-prevention__symptom-card--stroke .heat-prevention__symptom-item::before {
    background-color: var(--heat-red);
}

.heat-prevention__symptom-action {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--heat-gray-100);
    border-radius: var(--qc-radius-md);
    border: 1px solid var(--heat-gray-200);
}

.heat-prevention__symptom-action-title {
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--heat-gray-900);
}

.heat-prevention__symptom-action-text {
    color: var(--heat-gray-700);
    margin: 0;
    line-height: 1.6;
}

/* Emergency Protocol Card */
.heat-prevention__emergency-protocol {
    background-color: rgba(255, 82, 82, 0.08);
    border: 1px solid rgba(255, 82, 82, 0.28);
    border-radius: var(--qc-radius-md);
    padding: 1.5rem;
    margin: 2.5rem 0 0 0;
}

.heat-prevention__emergency-title {
    display: flex;
    align-items: center;
    color: var(--heat-danger);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.heat-prevention__emergency-icon {
    margin-right: 0.75rem;
}

.heat-prevention__emergency-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.heat-prevention__emergency-step {
    display: flex;
    margin-bottom: 0.75rem;
    color: var(--heat-gray-800);
}

.heat-prevention__emergency-step:last-child {
    margin-bottom: 0;
}

.heat-prevention__emergency-step-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: var(--heat-danger);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
}

.heat-prevention__emergency-step-text {
    line-height: 1.5;
}

/* Table Styles */
.heat-prevention__table-container {
    overflow-x: auto;
    margin: 2rem 0 0 0;
}

.heat-prevention__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: white;
    border-radius: var(--qc-radius-lg);
    overflow: hidden;
    box-shadow: var(--heat-box-shadow-sm);
}

.heat-prevention__table th,
.heat-prevention__table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--heat-gray-200);
    vertical-align: top;
}

.heat-prevention__table th {
    background-color: var(--heat-primary);
    color: white;
    font-weight: 800;
}

.heat-prevention__table tbody tr:hover {
    background-color: var(--heat-gray-50);
}

/* Cal/OSHA Requirements Section */
.heat-prevention__requirements {
    padding: 5rem 0;
    background-color: white;
}

.heat-prevention__requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.heat-prevention__requirements-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heat-gray-900);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.heat-prevention__requirements-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--heat-primary), var(--heat-orange));
    border-radius: 2px;
}

.heat-prevention__requirements-content p {
    color: var(--heat-gray-700);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.heat-prevention__requirements-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.heat-prevention__requirements-item {
    position: relative;
    padding: 1.5rem;
    background-color: var(--heat-gray-100);
    border-radius: var(--qc-radius-md);
    margin-bottom: 1rem;
    transition: var(--heat-transition);
    border: 1px solid var(--heat-gray-200);
}

.heat-prevention__requirements-item:hover {
    background-color: var(--heat-gray-200);
    transform: translateX(5px);
}

.heat-prevention__requirement-title {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--heat-gray-900);
    margin-bottom: 0.5rem;
}

.heat-prevention__requirement-icon {
    color: var(--heat-primary);
    margin-right: 0.75rem;
}

.heat-prevention__requirement-text {
    color: var(--heat-gray-700);
    margin: 0;
    line-height: 1.6;
}

.heat-prevention__requirements-image {
    position: relative;
    border-radius: var(--qc-radius-lg);
    overflow: hidden;
    box-shadow: var(--heat-box-shadow-lg);
}

.heat-prevention__requirements-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.heat-prevention__requirements-image:hover img {
    transform: scale(1.03);
}

/* QuickCare Solution Section */
.heat-prevention__solution {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--heat-primary-dark), var(--heat-primary));
    color: white;
    position: relative;
    overflow: hidden;
}

.heat-prevention__solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="white" fill-opacity="0.05" d="M13,9 L16,6 L16,13 L9,13 L9,9 L13,9 Z M22,10 L25,7 L25,14 L18,14 L18,10 L22,10 Z M13,22 L16,19 L16,26 L9,26 L9,22 L13,22 Z M22,23 L25,20 L25,27 L18,27 L18,23 L22,23 Z"></path></svg>');
    opacity: 0.12;
}

.heat-prevention__solution-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.heat-prevention__solution-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.92;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.heat-prevention__solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.heat-prevention__solution-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--qc-radius-lg);
    padding: 2rem;
    transition: var(--heat-transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.heat-prevention__solution-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--heat-box-shadow-lg);
}

.heat-prevention__solution-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1.25rem;
    font-size: 2rem;
}

.heat-prevention__solution-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.heat-prevention__solution-card-text {
    opacity: 0.92;
    line-height: 1.65;
    margin: 0;
}

/* How It Works */
.heat-prevention__how {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--heat-gray-50), white);
    border-top: 1px solid var(--heat-gray-200);
    border-bottom: 1px solid var(--heat-gray-200);
}

.heat-prevention__how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.heat-prevention__how-step {
    background: white;
    border-radius: var(--qc-radius-lg);
    padding: 2rem;
    box-shadow: var(--heat-box-shadow-md);
    border: 1px solid var(--heat-gray-200);
    transition: var(--heat-transition);
    position: relative;
    overflow: hidden;
}

.heat-prevention__how-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--heat-box-shadow-lg);
}

.heat-prevention__how-num {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(106, 61, 232, 0.12);
    color: var(--heat-primary-dark);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.heat-prevention__how-title {
    font-weight: 900;
    color: var(--heat-gray-900);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.heat-prevention__how-text {
    color: var(--heat-gray-700);
    margin: 0;
    line-height: 1.65;
}

/* Training Section */
.heat-prevention__training {
    padding: 5rem 0;
    background-color: var(--heat-gray-50);
}

.heat-prevention__training-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.heat-prevention__training-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--heat-gray-900);
    margin-bottom: 1.25rem;
}

.heat-prevention__training-text {
    color: var(--heat-gray-700);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.heat-prevention__training-image {
    border-radius: var(--qc-radius-lg);
    overflow: hidden;
    margin: 2.75rem auto;
    max-width: 820px;
    box-shadow: var(--heat-box-shadow-lg);
}

.heat-prevention__training-image img {
    width: 100%;
    height: auto;
    display: block;
}

.heat-prevention__training-panels {
    text-align: left;
    margin-top: 2.25rem;
}

.heat-prevention__panel {
    background: white;
    border-radius: var(--qc-radius-lg);
    padding: 2rem;
    box-shadow: var(--heat-box-shadow-md);
    border: 1px solid var(--heat-gray-200);
    height: 100%;
}

.heat-prevention__panel h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--heat-gray-900);
    margin-bottom: 1rem;
}

.heat-prevention__panel ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--heat-gray-700);
    line-height: 1.7;
}

.heat-prevention__panel li {
    margin-bottom: 0.5rem;
}

.heat-prevention__panel li:last-child {
    margin-bottom: 0;
}

/* Benefits Section */
.heat-prevention__benefits {
    padding: 5rem 0;
    background-color: white;
}

.heat-prevention__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.heat-prevention__benefit-card {
    background-color: var(--heat-gray-50);
    border-radius: var(--qc-radius-lg);
    padding: 2rem;
    box-shadow: var(--heat-box-shadow-sm);
    transition: var(--heat-transition);
    border-left: 4px solid var(--heat-primary);
}

.heat-prevention__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--heat-box-shadow-md);
}

.heat-prevention__benefit-icon {
    font-size: 2.5rem;
    color: var(--heat-primary);
    margin-bottom: 1.25rem;
}

.heat-prevention__benefit-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--heat-gray-900);
    margin-bottom: 0.75rem;
}

.heat-prevention__benefit-text {
    color: var(--heat-gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Prevention Tips Section */
.heat-prevention__tips {
    padding: 5rem 0;
    background-color: var(--heat-gray-100);
}

.heat-prevention__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.heat-prevention__tip-card {
    position: relative;
    background-color: white;
    border-radius: var(--qc-radius-lg);
    padding: 2rem;
    box-shadow: var(--heat-box-shadow-sm);
    transition: var(--heat-transition);
    border: 1px solid var(--heat-gray-200);
}

.heat-prevention__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--heat-box-shadow-md);
}

.heat-prevention__tip-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 34px;
    height: 34px;
    background-color: var(--heat-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
}

.heat-prevention__tip-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--heat-gray-900);
    margin-bottom: 0.75rem;
    padding-top: 0.5rem;
}

.heat-prevention__tip-text {
    color: var(--heat-gray-700);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.heat-prevention__faq {
    padding: 5rem 0;
    background-color: var(--heat-gray-50);
}

.heat-prevention__faq-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.heat-prevention__accordion-item {
    background-color: white;
    border: 1px solid var(--heat-gray-200);
    border-radius: var(--qc-radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--heat-box-shadow-sm);
}

.heat-prevention__accordion-button {
    width: 100%;
    background-color: white;
    border: none;
    text-align: left;
    padding: 1.25rem;
    font-size: 1.075rem;
    font-weight: 800;
    color: var(--heat-gray-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--heat-transition);
}

.heat-prevention__accordion-button:hover {
    background-color: var(--heat-gray-50);
}

.heat-prevention__accordion-icon {
    transition: transform 0.3s ease;
    color: var(--heat-primary);
    font-size: 1.5rem;
}

.heat-prevention__accordion-item.active .heat-prevention__accordion-icon {
    transform: rotate(180deg);
}

.heat-prevention__accordion-content {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.heat-prevention__accordion-item.active .heat-prevention__accordion-content {
    max-height: 1000px;
    padding-bottom: 1.25rem;
}

.heat-prevention__accordion-text {
    color: var(--heat-gray-700);
    line-height: 1.7;
    margin: 0.75rem 0 0 0;
}

.heat-prevention__accordion-text a {
    color: var(--heat-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.heat-prevention__accordion-text a:hover {
    color: var(--heat-primary-dark);
    text-decoration: underline;
}

/* CTA Section */
.heat-prevention__cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--heat-primary-dark), var(--heat-primary));
    color: white;
    text-align: center;
}

.heat-prevention__cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.heat-prevention__cta-text {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto 2.25rem;
    opacity: 0.92;
}

.heat-prevention__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.heat-prevention__cta-button {
    padding: 1rem 2rem;
    border-radius: var(--qc-radius-md);
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--heat-transition);
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.heat-prevention__cta-button--primary {
    background-color: white;
    color: var(--heat-primary-dark);
    box-shadow: var(--heat-box-shadow-md);
}

.heat-prevention__cta-button--primary:hover {
    background-color: rgba(255, 255, 255, 0.92);
    transform: translateY(-3px);
    box-shadow: var(--heat-box-shadow-lg);
    color: var(--heat-primary-dark);
}

.heat-prevention__cta-button--secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.heat-prevention__cta-button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: white;
}

.heat-prevention__cta-button-icon {
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .heat-prevention__title {
        font-size: 2.25rem;
    }

    .heat-prevention__understanding-grid,
    .heat-prevention__requirements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .heat-prevention__symptoms-grid {
        grid-template-columns: 1fr;
    }

    .heat-prevention__requirements-image {
        order: -1;
    }

    .heat-prevention__snapshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .heat-prevention__how-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .heat-prevention__hero {
        padding: 3rem 0;
    }

    .heat-prevention__title {
        font-size: 2rem;
    }

    .heat-prevention__subtitle {
        font-size: 1.08rem;
    }

    .heat-prevention__hero-bullets {
        grid-template-columns: 1fr;
    }

    .heat-prevention__section-title {
        font-size: 1.75rem;
    }

    .heat-prevention__hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .heat-prevention__button {
        width: 100%;
    }

    .heat-prevention__cta-title {
        font-size: 2rem;
    }

    .heat-prevention__cta-text {
        font-size: 1.08rem;
    }

    .heat-prevention__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .heat-prevention__cta-button {
        width: 100%;
    }

    .heat-prevention__understanding-content h2,
    .heat-prevention__requirements-content h2 {
        font-size: 1.75rem;
    }

    .heat-prevention__snapshot-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .heat-prevention__solution-cards {
        grid-template-columns: 1fr;
    }

    .heat-prevention__accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }

    .heat-prevention__symptom-title {
        padding-right: 6rem;
    }
}