/* IOSH Course Page Styles */

/* Custom Colors */
:root {
    --primary: #1e3a8a;
    --secondary: #3b82f6;
    --accent: #ff0000;
    --dark-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
}

/* Diamond Icon */
.diamond-icon {
    width: 12px;
    height: 12px;
    background: #3b82f6;
    transform: rotate(45deg);
}

/* Gradient Background */
.gradient-bg {
    background: #1e3a8a;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Two Tone Heading */
.two-tone-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.two-tone-heading .first-word {
    color: #1e3a8a;
}

.two-tone-heading .second-word {
    color: #1f2937;
}

/* Fixed Font Sizes */
.hero-badge {
    font-size: 18px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
}

.hero-button {
    font-size: 18px;
}

.section-title {
    font-size: 48px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 24px;
}

.content-text {
    font-size: 20px;
    line-height: 1.6;
}

.highlight-title {
    font-size: 28px;
}

.highlight-text {
    font-size: 18px;
}

.module-number {
    font-size: 16px;
}

.module-title {
    font-size: 18px;
}

.module-content {
    font-size: 18px;
    line-height: 1.6;
}

.module-list {
    font-size: 16px;
}

.faq-title {
    font-size: 20px;
}

.faq-content {
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .two-tone-heading {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .content-text {
        font-size: 18px;
    }
} 