/* 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: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.logo-icon {
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #2D5A87;
    margin: 0;
}

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

.brand-name a:hover {
    color: #4A90C2;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 3rem 0;
    background: white;
}

.main-content h1 {
    font-size: 2.5rem;
    color: #2D5A87;
    margin-bottom: 2rem;
    text-align: center;
}

.main-content h2 {
    font-size: 1.8rem;
    color: #2D5A87;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.main-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.main-content ul li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* About Page Sections */
.about-section,
.team-section,
.vision-section,
.innovation-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3498DB;
}

.centered {
    text-align: center;
}

.about-content,
.team-content,
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.team-photo,
.office-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text,
.team-text,
.vision-text {
    text-align: left;
}

.about-image {
    display: flex;
    justify-content: center;
}

.vision-image {
    display: flex;
    justify-content: center;
}

.team-illustration,
.innovation-illustration {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.innovation-section {
    text-align: center;
}

.innovation-section p {
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Policy sections */
.policy-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
    color: #2D5A87;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498DB;
    padding-bottom: 0.5rem;
}

.policy-section ul {
    margin: 1rem 0;
}

/* Content Placeholder for Empty Pages */
.content-placeholder {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    border: 2px dashed #ccc;
    text-align: center;
    color: #666;
    margin: 2rem 0;
}

.content-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.content-placeholder ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #2D5A87;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #4A90C2;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #4A90C2;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .about-section,
    .team-section,
    .vision-section,
    .innovation-section {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content,
    .team-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-placeholder {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .main-content h1 {
        font-size: 1.8rem;
    }
}