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

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.5;
    color: #1f2937;
    background-color: #ffffff;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.brand-name {
    font-size: 2rem;
    color: #4F46E5;
    margin: 0;
}

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

.brand-tagline {
    color: #059669;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.navigation a {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.navigation a:hover {
    background-color: #f3f4f6;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 400px);
    padding: 3rem 0;
}

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

.page-header h1 {
    color: #4F46E5;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #6b7280;
    font-size: 1.2rem;
    font-style: italic;
}

.content-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    color: #4F46E5;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.content-section p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.empty-content {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
}

.empty-content p {
    color: #9ca3af;
    font-style: italic;
    font-size: 1.1rem;
}

/* About Page Specific Styles */
.centered {
    text-align: center;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    text-align: left;
}

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

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mission-text {
    text-align: left;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #059669;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    color: #4F46E5;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6b7280;
    text-align: center;
}

.commitment-section {
    background-color: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.commitment-section h2 {
    color: #4F46E5;
    margin-bottom: 2rem;
}

.commitment-section p {
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    text-align: left;
}

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

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mission-text {
    text-align: left;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #059669;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    color: #4F46E5;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6b7280;
    text-align: center;
}

.commitment-section {
    background-color: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.commitment-section h2 {
    color: #4F46E5;
    margin-bottom: 2rem;
}

.commitment-section p {
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #059669;
    margin-bottom: 1rem;
}

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

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

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

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

.footer .logo {
    width: 40px;
    height: 40px;
}

.footer .brand-name {
    color: white;
    font-size: 1.2rem;
}

.footer .brand-tagline {
    color: #059669;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero,
    .mission-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text,
    .mission-text {
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero,
    .mission-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text,
    .mission-text {
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}