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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: -0.5px;
}

.back-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #2563eb;
    border-radius: 6px;
}

.back-link:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 60px 0;
    background-color: #ffffff;
}

.main-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 50px;
}

/* About Page Specific Styles */
.about-block {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-block h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.about-block p {
    font-size: 16px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-block:last-child {
    margin-bottom: 0;
}

/* About Page Specific Enhancements */
.about-image-container {
    margin: 30px 0;
    text-align: center;
}

.about-image {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.training-methodology {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid #e2e8f0;
}

.methodology-icon {
    margin-bottom: 20px;
}

.training-methodology h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.training-methodology p {
    font-size: 16px;
    color: #4b5563;
    max-width: 500px;
    margin: 0 auto;
}

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

.pillar {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.pillar-icon {
    margin-bottom: 20px;
}

.pillar h3 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 600;
}

.pillar p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Policy Pages Styling */
.policy-section {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
}

.policy-section p {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

/* Content Placeholder for Empty Pages */
.content-placeholder {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 20px;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
}

.content-placeholder p {
    font-size: 18px;
    color: #6b7280;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #ffffff;
    padding: 50px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .brand-name {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    border-top: 1px solid #374151;
    padding-top: 20px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-content h1 {
        font-size: 32px;
    }
    
    .about-block h2 {
        font-size: 24px;
    }
    
    .about-block p {
        font-size: 15px;
        text-align: left;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .main-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 0;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .main-content h1 {
        font-size: 28px;
    }
}