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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-off-white);
}

/* SharePoint Compatibility Styles */
.ms-webpart-zone {
    background: transparent !important;
}

.ms-rte-layoutszone-inner {
    margin: 0 !important;
}

/* Additional SharePoint overrides */
.ms-webpart-zone .ms-webpart-chrome {
    border: none !important;
    background: transparent !important;
}

.ms-webpart-zone .ms-webpart-chrome-title {
    display: none !important;
}

.ms-webpart-zone table {
    width: 100% !important;
}

/* Risk Assessment Styles */
.risk-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--neutral-light);
    border-radius: 8px;
}

.risk-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.risk-badge {
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

.risk-level {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.risk-level.green {
    background: var(--level-green);
    color: #1a5a2e;
}

.risk-level.yellow {
    background: var(--level-yellow);
    color: #6b5b00;
}

.risk-level.purple {
    background: var(--level-purple);
    color: #4a2c5a;
}

.category-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.equipment-summary {
    margin-top: 3rem;
    text-align: center;
}

.summary-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    background: var(--neutral-light);
    min-width: 100px;
}

.stat-item.green {
    background: rgba(56, 242, 131, 0.1);
    border: 1px solid var(--level-green);
}

.stat-item.yellow {
    background: rgba(238, 253, 68, 0.1);
    border: 1px solid var(--level-yellow);
}

.stat-item.purple {
    background: rgba(211, 182, 255, 0.1);
    border: 1px solid var(--level-purple);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Risk-Specific Safety Styles */
.risk-specific-safety {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-medium);
}

.risk-safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.risk-safety-card {
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.risk-safety-card.purple-risk {
    border-left-color: var(--level-purple);
    background: rgba(211, 182, 255, 0.05);
}

.risk-safety-card.yellow-risk {
    border-left-color: var(--level-yellow);
    background: rgba(238, 253, 68, 0.05);
}

.risk-safety-card.green-risk {
    border-left-color: var(--level-green);
    background: rgba(56, 242, 131, 0.05);
}

.risk-safety-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.risk-safety-card p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.risk-safety-card ul {
    list-style-type: none;
    padding: 0;
}

.risk-safety-card li {
    margin: 0.75rem 0;
    padding-left: 0;
}

.risk-safety-card li strong {
    color: var(--text-primary);
}

/* Ensure responsive design works in SharePoint */
@media (max-width: 768px) {
    .ms-webpart-zone .container {
        padding: 0 10px !important;
    }
    
    .ms-webpart-zone .nav-container {
        padding: 0 10px !important;
    }
}

/* CSS Variables for Branding */
:root {
    --primary-yellow: #EEFD44;
    --primary-black: #000000;
    --primary-off-white: #F8F8EF;
    --hover-gray: #e4e5da;
    --neutral-light: #F8F8EF;
    --neutral-medium: #e4e5da;
    --neutral-dark: #333333;
    --text-primary: #000000;
    --text-secondary: #666666;
    --border-light: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --training-level-1: #38F283;
    --training-level-2: #EEFD44;
    --training-level-3: #D3B6FF;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll offset for anchor links to account for sticky header */
:target {
    scroll-margin-top: 100px;
}

section[id], div[id], h2[id], h3[id], h4[id] {
    scroll-margin-top: 100px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Enhanced Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.btn:focus,
.nav__link:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* Remove default outline for mouse users, keep for keyboard users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: var(--hover-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-black);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-black);
    border: 1px solid var(--primary-black);
}

.btn-secondary:hover {
    background-color: var(--primary-black);
    color: var(--primary-off-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-black);
    border: 1px solid var(--primary-black);
}

.btn-outline:hover {
    background-color: var(--primary-black);
    color: var(--primary-off-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Header and Navigation */
.header {
    background-color: var(--primary-off-white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

.header__logo a {
    text-decoration: none;
    color: inherit;
}

.header__logo span {
    color: var(--primary-yellow);
    text-shadow:
        -1px -1px 0 var(--primary-black),
         1px -1px 0 var(--primary-black),
        -1px  1px 0 var(--primary-black),
         1px  1px 0 var(--primary-black);
}

.nav {
    display: flex;
    gap: 24px;
}

.nav__link {
    color: var(--primary-black);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s ease;
    text-decoration: none;
}

.nav__link:hover,
.nav__link--active {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    transition: all 0.3s ease;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 3;
    }

    .header__container {
        position: relative;
        align-items: center;
    }

    .header__logo {
        order: 1;
        flex: 1;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--primary-off-white);
        border-top: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav__link {
        display: block;
        width: 100%;
        padding: 12px 20px;
        border-radius: 0;
        text-align: left;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav__link:hover,
    .nav__link--active {
        background: var(--primary-yellow);
        border-radius: 0;
    }
}

/* Hero Section */
.hero {
    background: var(--neutral-light);
    color: var(--text-primary);
    padding: 4rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 400px;
    height: 300px;
    background-color: var(--neutral-medium);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    border: 2px dashed var(--border-light);
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #bdc3c7;
}

/* Features Section */
.features {
    padding: 48px 0;
    background-color: var(--primary-off-white);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

.feature-card {
    background: var(--primary-off-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Notice section */
.notice-section {
    padding: 48px 0;
    background: rgba(238, 253, 68, 0.05);
}

.notice-card {
    background: var(--primary-off-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.notice-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.notice-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .notice-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Workshop Levels */
.workshop-levels {
    padding: 4rem 0;
}

.workshop-levels h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .levels-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.level-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.level-card:hover {
    transform: translateY(-5px);
}

.level-header {
    padding: 1.5rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    text-align: center;
    gap: 1rem;
}

.level-green .level-header {
    background: var(--training-level-1);
    color: var(--text-primary);
}

.level-yellow .level-header {
    background: var(--training-level-2);
    color: var(--text-primary);
}

.level-purple .level-header {
    background: var(--training-level-3);
    color: var(--text-primary);
}

.level-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
    display: inline-block;
}

.level-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.level-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.level-card ul {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.level-card .btn {
    margin: 0 1.5rem 1.5rem 1.5rem;
}

/* Color-coded sections */
.green-category {
    border-left: 4px solid var(--training-level-1);
    background: rgba(56, 242, 131, 0.05);
}

.yellow-category {
    border-left: 4px solid var(--training-level-2);
    background: rgba(238, 253, 68, 0.05);
}

.purple-category {
    border-left: 4px solid var(--training-level-3);
    background: rgba(211, 182, 255, 0.05);
}

/* Training page specific styles */
.training-overview {
    padding: 4rem 0;
    background: var(--neutral-light);
}

.training-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .training-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.info-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.training-levels {
    padding: 4rem 0;
}

.level-detail {
    margin: 4rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.level-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .level-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.level-info {
    padding: 3rem;
}

.level-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.level-green .level-badge {
    background: var(--training-level-1);
    color: var(--text-primary);
}

.level-yellow .level-badge {
    background: var(--training-level-2);
    color: var(--text-primary);
}

.level-purple .level-badge {
    background: var(--training-level-3);
    color: var(--text-primary);
}

.prerequisite-note, .certification-note {
    background: var(--neutral-light);
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.training-img, .equipment-img, .location-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.level-image {
    padding: 2rem;
    display: flex;
    align-items: center;
}

.equipment-overview {
    padding: 4rem 0;
    background: var(--neutral-light);
}

.equipment-grid {
    display: grid;
    gap: 3rem;
    margin: 3rem 0;
}

.equipment-category {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.equipment-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .equipment-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.equipment-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.equipment-info h4 {
    margin-bottom: 0.5rem;
}

.equipment-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Safety page specific styles */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.checklist-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.checklist-item h4 {
    color: var(--training-level-1);
    margin-bottom: 0.5rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.support-item {
    background: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.support-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.note-card {
    background: var(--primary-blue);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.note-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.note-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Equipment page specific styles */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .tool-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.tool-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.tool-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--neutral-medium);
}

.tool-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.tool-item li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.safety-equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .safety-equipment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.safety-item {
    background: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.safety-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.workshop-provided {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--neutral-light);
    border-radius: 12px;
}

/* Booking page specific styles */
.access-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .access-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.access-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.access-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Classification Overview */
.classification-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.classification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.color-indicator.green {
    background-color: #27ae60;
}

.color-indicator.yellow {
    background-color: #f39c12;
}

.color-indicator.purple {
    background-color: #9b59b6;
}

/* Equipment Cards */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.equipment-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid;
}

.green-category .equipment-card {
    border-left-color: #27ae60;
}

.yellow-category .equipment-card {
    border-left-color: #f39c12;
}

.purple-category .equipment-card {
    border-left-color: #9b59b6;
}

.equipment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.equipment-header h3 {
    margin: 0;
}

.risk-level {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.risk-level.green {
    background-color: #27ae60;
}

.risk-level.yellow {
    background-color: #f39c12;
}

.risk-level.purple {
    background-color: #9b59b6;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.content-main h2 {
    margin-top: 2rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.layout-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.layout-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }
}

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.info-box h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e74c3c;
}

.info-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.5rem;
}

/* Workshop Detail Styles */
.level-detail {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.level-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.level-info {
    padding: 2rem;
}

.level-sidebar {
    background: #f8f9fa;
    padding: 2rem;
}

.session-timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-time {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
    white-space: nowrap;
    height: fit-content;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.tools-covered,
.prerequisites {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tools-covered h4,
.prerequisites h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Workshop Statistics */
.workshop-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Clothing and Preparation Styles */
.clothing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.clothing-section {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.clothing-section.recommended {
    background: #f0fff4;
    border-left: 4px solid #27ae60;
}

.clothing-section.not-allowed {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
}

.clothing-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.clothing-item:last-child {
    border-bottom: none;
}

.clothing-item h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

/* Gloves Section */
.gloves-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.glove-type {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.glove-type.recommended {
    border: 2px solid #27ae60;
}

.glove-type.acceptable {
    border: 2px solid #f39c12;
}

.glove-type.not-recommended {
    border: 2px solid #e74c3c;
}

.glove-rating {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Footwear Section */
.footwear-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.footwear-item,
.footwear-not-allowed {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footwear-not-allowed {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
}

/* PPE Section */
.ppe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.ppe-provided,
.ppe-bring {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ppe-provided {
    border-left: 4px solid #3498db;
}

.ppe-bring {
    border-left: 4px solid #e74c3c;
}

.ppe-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #95a5a6;
    margin: 1rem 0;
}

/* Safety Section Styles */
.safety-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2rem;
}

.stat-content h3 {
    margin: 0 0 0.25rem 0;
    color: #2c3e50;
}

.stat-content p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Emergency Procedures */
.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.emergency-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.emergency-card.critical {
    border-left: 4px solid #e74c3c;
}

.emergency-card.fire {
    border-left: 4px solid #f39c12;
}

.emergency-card.injury {
    border-left: 4px solid #3498db;
}

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.emergency-steps {
    text-align: left;
    margin: 1.5rem 0;
}

.emergency-steps ol {
    padding-left: 1.5rem;
}

.emergency-steps li {
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.fire-extinguisher-note {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #f39c12;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: left;
}

.emergency-contacts {
    margin: 3rem 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.contact-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Safety Rules */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.rules-category {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.rules-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* PPE Categories */
.ppe-categories {
    margin: 2rem 0;
}

.ppe-category {
    margin-bottom: 3rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ppe-category h3 {
    padding: 1.5rem;
    margin: 0;
    color: white;
}

.ppe-category.basic h3 {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.ppe-category.intermediate h3 {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.ppe-category.advanced h3 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.ppe-items {
    padding: 2rem;
}

.ppe-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.ppe-item:last-child {
    border-bottom: none;
}

.ppe-item h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

/* Tool Safety Grid */
.tool-safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tool-safety-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #e74c3c;
}

.tool-safety-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Buddy System */
.buddy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.buddy-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.buddy-tips {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.buddy-tips h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Hazards Grid */
.hazards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.hazard-category {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #f39c12;
}

.hazard-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Incident Reporting */
.reporting-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.reporting-note {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin: 1.5rem 0;
}

/* Training Grid */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.training-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.training-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Booking Styles */
.booking-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-content h3 {
    margin: 0 0 0.25rem 0;
    color: #2c3e50;
}

.highlight-content p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Process Steps */
.process-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    background: #e74c3c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.step-content p {
    margin: 0;
    color: #555;
}

/* Selection Grid */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.selection-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.selection-card:hover {
    transform: translateY(-5px);
}

.selection-header {
    padding: 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.duration {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.selection-content {
    padding: 2rem;
}

.selection-content h4 {
    color: #2c3e50;
    margin: 1.5rem 0 0.75rem 0;
}

.selection-content h4:first-child {
    margin-top: 0;
}

.selection-action {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.selection-action p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.detail-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Scheduling */
.scheduling-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.schedule-ratio {
    background: #e74c3c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.schedule-content h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.schedule-content p {
    margin: 0;
    color: #555;
}

/* Policies Grid */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.policy-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.policy-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* SISO Info */
.siso-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.siso-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.siso-support {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.siso-tips {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin: 2rem 0;
}

.siso-tips h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Next Steps & Actions */
.next-steps-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.action-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 4px solid #e74c3c;
}

.action-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Safety Considerations */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.safety-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #f39c12;
}

.safety-item h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Warning Boxes */
.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-left: 4px solid #f39c12;
    color: #856404;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.warning-box p {
    margin: 0 0 1rem 0;
    color: #856404;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

/* Logistics Grid */
.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.logistics-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.logistics-item h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Checklist */
.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.checklist-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #27ae60;
}

.checklist-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.checklist-items {
    list-style: none;
    padding: 0;
}

.checklist-items li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.checklist-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Help Section */
.help-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

/* Access Info */
.access-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.access-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.access-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.maintenance-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #95a5a6;
    margin: 2rem 0;
}

.maintenance-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Commitment Section */
.commitment-content {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.commitment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-off-white);
    padding: 48px 0;
    margin-top: 72px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.footer__section h3 {
    color: var(--primary-yellow);
    margin-bottom: 16px;
}

.footer__section p {
    color: var(--primary-off-white);
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer__section a {
    color: var(--primary-off-white);
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer__section a:hover {
    color: var(--primary-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .level-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-time {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .clothing-grid {
        grid-template-columns: 1fr;
    }
    
    .ppe-grid {
        grid-template-columns: 1fr;
    }
    
    .buddy-content {
        grid-template-columns: 1fr;
    }
    
    .siso-info {
        grid-template-columns: 1fr;
    }
    
    .next-steps-actions {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .help-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .commitment-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .schedule-ratio {
        margin-bottom: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin-bottom: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .cta,
    footer {
        display: none;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .page-hero {
        background: none;
        color: #333;
    }
    
    .page-hero h1,
    .page-hero p {
        color: #333;
    }
    
    .level-header {
        color: #333 !important;
        background: #f0f0f0 !important;
    }
    
    .btn {
        display: none;
    }
}