/* SafetyPro Consultancy - Complete CSS Styles */

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5aa0;
    text-decoration: none;
}

.logo:hover {
    color: #1e3f6f;
}

.certification-banner {
    background: #f8f9fa;
    color: #2c5aa0;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #e9ecef;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2c5aa0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5aa0;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn-primary {
    background: #2c5aa0;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1e3f6f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

/* Main Content */
main {
    margin-top: 100px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f6f 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::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" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons .btn-primary {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.section-description {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-top-color: #2c5aa0;
}

.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.learn-more {
    color: #2c5aa0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more:hover {
    color: #1e3f6f;
    transform: translateX(5px);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.cta-section p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.cta-buttons .btn-primary {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    border-left: 4px solid #2c5aa0;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: #2c5aa0;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 0.25rem;
}

.testimonial-title {
    color: #666;
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f6f 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links a {
    color: #999;
    margin: 0 1rem;
}

.legal-links a:hover {
    color: white;
}

/* Page Content Styles */
.page-content {
    padding: 2rem 0;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #2c5aa0;
}

.page-header h1 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Specific Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content section {
    margin-bottom: 3rem;
}

.about-content h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mv-grid,
.expertise-grid,
.values-grid,
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mv-item,
.expertise-item,
.value-item,
.cert-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #2c5aa0;
}

.mv-item h3,
.expertise-item h4,
.value-item h4,
.cert-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-stat {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.team-stat .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5aa0;
    display: block;
    margin-bottom: 0.5rem;
}

.team-stat .stat-label {
    color: #666;
}

.about-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f6f 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

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

.about-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Contact Form Styles */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #dc3545;
}

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

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #2c5aa0;
}

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

.contact-item p {
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.btn-primary.loading,
.btn-secondary.loading {
    position: relative;
    color: transparent;
}

.btn-primary.loading::after,
.btn-secondary.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .certification-banner {
        order: -1;
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid #eee;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons .btn-primary,
    .cta-buttons .btn-primary {
        margin-bottom: 1rem;
        margin-right: 0;
        display: block;
        text-align: center;
    }
    
    .hero-buttons .btn-secondary,
    .cta-buttons .btn-secondary {
        display: block;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .services-section,
    .benefits-section,
    .testimonials-section,
    .final-cta {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .benefit-item,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
}

/* Services Page Styles */
.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e9ecef;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-grid.reverse {
    direction: rtl;
}

.service-grid.reverse > * {
    direction: ltr;
}

.service-info h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #666;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 1rem;
}

.service-features li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-image {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.placeholder-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #6c757d;
    font-weight: 600;
    border-radius: 10px;
}

.service-cta {
    margin-top: 2rem;
}

.service-cta .btn-primary {
    margin-right: 1rem;
}

.services-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f6f 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.services-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.services-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    text-align: center;
}

.feature h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form-section h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-form-section p {
    margin-bottom: 2rem;
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #dc3545;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
}

.contact-info-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2c5aa0;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 0.25rem;
    color: #666;
    font-size: 0.95rem;
}

.contact-item a {
    color: #2c5aa0;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.why-contact {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.why-contact h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.why-contact ul {
    list-style: none;
}

.why-contact li {
    padding: 0.5rem 0;
    color: #555;
}

.why-contact li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-areas,
.faq-section {
    margin-bottom: 3rem;
}

.service-areas h2,
.faq-section h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-areas p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.areas-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-item,
.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #2c5aa0;
}

.area-item h4,
.faq-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.area-item p,
.faq-item p {
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f6f 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

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

.contact-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cta-stats .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Training Page Styles */
.training-content {
    max-width: 1200px;
    margin: 0 auto;
}

.training-overview {
    margin-bottom: 4rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-text h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.overview-text p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #666;
}

.training-benefits {
    list-style: none;
}

.training-benefits li {
    padding: 0.5rem 0;
    color: #555;
}

.training-benefits li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
}

.overview-stats {
    display: grid;
    gap: 2rem;
}

.training-stat {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #2c5aa0;
}

.training-stat .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5aa0;
    display: block;
    margin-bottom: 0.5rem;
}

.training-stat .stat-label {
    color: #666;
    font-size: 0.9rem;
}

.training-detail {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.training-grid.reverse {
    grid-template-columns: 1fr 2fr;
}

.training-info h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.training-info p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #666;
}

.training-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2c5aa0;
}

.detail-item {
    margin-bottom: 0.75rem;
    color: #555;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.training-info h4 {
    color: #2c5aa0;
    margin: 2rem 0 1rem 0;
}

.course-content {
    list-style: none;
    margin-bottom: 2rem;
}

.course-content li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.course-content li:last-child {
    border-bottom: none;
}

.course-content li::before {
    content: '•';
    color: #2c5aa0;
    font-weight: bold;
    margin-right: 0.75rem;
}

.training-cta {
    margin-top: 2rem;
}

.additional-training {
    margin-bottom: 4rem;
}

.additional-training h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #2c5aa0;
}

.additional-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.additional-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.additional-item .price {
    font-weight: 600;
    color: #2c5aa0;
    font-size: 1.1rem;
}

.training-packages {
    margin-bottom: 4rem;
}

.training-packages h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    border-top: 4px solid #2c5aa0;
    transition: transform 0.3s ease;
}

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

.package-card.featured {
    border-color: #28a745;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.package-card.featured h3 {
    color: #28a745;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.package-card.featured .package-price {
    color: #28a745;
}

.package-price span {
    font-size: 0.8rem;
    font-weight: normal;
    color: #666;
}

.package-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.package-includes li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-includes li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
}

.training-cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f6f 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

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

.training-cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Case Studies Styles */
.case-studies-content {
    max-width: 1000px;
    margin: 0 auto;
}

.case-study {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    overflow: hidden;
}

.case-study-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f6f 100%);
    color: white;
    padding: 2rem;
}

.case-study-header h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.case-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.case-content {
    padding: 2rem;
}

.challenge,
.solution,
.results {
    margin-bottom: 2rem;
}

.challenge h3,
.solution h3,
.results h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.solution ul {
    list-style: none;
    margin-top: 1rem;
}

.solution li {
    padding: 0.5rem 0;
    color: #555;
}

.solution li::before {
    content: '▶';
    color: #2c5aa0;
    margin-right: 0.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.result-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #28a745;
}

.result-number {
    font-size: 2rem;
    font-weight: bold;
    color: #28a745;
    display: block;
    margin-bottom: 0.5rem;
}

.result-label {
    color: #666;
    font-size: 0.9rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    margin-top: 2rem;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
}

.testimonial cite {
    color: #2c5aa0;
    font-weight: 600;
    font-style: normal;
}

.success-stats {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.success-stats h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 2rem;
}

.industries-served {
    margin-bottom: 3rem;
}

.industries-served h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #2c5aa0;
}

.industry-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.industry-item p {
    color: #666;
    line-height: 1.6;
}

.case-studies-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f6f 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

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

.case-studies-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Legal Pages Styles */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-page h1 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-page section {
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-page h3 {
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-page a {
    color: #2c5aa0;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* Print Styles */
@media print {
    .site-header,
    .mobile-menu-toggle,
    .hero-buttons,
    .cta-buttons,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        background: none !important;
        color: #333 !important;
    }
    
    main {
        margin-top: 0;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 992px) {
    .service-grid,
    .training-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-grid.reverse,
    .training-grid.reverse {
        direction: ltr;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .case-meta {
        gap: 1rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid,
    .faq-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail,
    .training-detail {
        padding: 2rem 0;
    }
    
    .services-cta,
    .training-cta-section,
    .contact-cta,
    .case-studies-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .results-grid,
    .cta-stats {
        grid-template-columns: 1fr;
    }
    
    .case-study-header {
        padding: 1.5rem;
    }
    
    .case-content {
        padding: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .training-stat,
    .contact-item,
    .additional-item {
        padding: 1.5rem;
    }
}