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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Section */
.header {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

.brand-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.page-header h1 {
    font-size: 3rem;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.last-updated {
    color: #64748B;
    font-style: italic;
    font-size: 1rem;
}

/* Content Sections */
.content-section {
    background-color: white;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.content-section h2 {
    font-size: 2rem;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #1E3A8A;
    margin-bottom: 15px;
    margin-top: 25px;
}

.content-section p {
    color: #64748B;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section li {
    color: #64748B;
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-section a {
    color: #EA580C;
    text-decoration: none;
    font-weight: 600;
}

.content-section a:hover {
    text-decoration: underline;
}

/* About Us Specific Styles */
.mission-list {
    background-color: #F8FAFC;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #EA580C;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background-color: #F8FAFC;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-card h3 {
    color: #1E3A8A;
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 1.3rem;
}

.value-card p {
    color: #64748B;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Information */
.contact-info {
    background-color: #F8FAFC;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #1E3A8A;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #64748B;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-item a {
    color: #EA580C;
    text-decoration: none;
    font-weight: 600;
}

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

/* Footer */
.footer {
    background-color: #1E3A8A;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

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

.footer-logo-img {
    width: 50px;
    height: 50px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-text {
    text-align: right;
}

.footer-text p {
    opacity: 0.9;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 40px 0;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .logo-container {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .content-section {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
    
    .content-section p,
    .content-section li {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 30px 0;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 25px 15px;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
    }
    
    .content-section h3 {
        font-size: 1.1rem;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}