/* About Us Page Styles */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Hero Section Center Alignment */
.hero-section .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Hero Title Enhancement */
.hero-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    display: block !important;
    visibility: visible !important;
}

/* Rich Content Styling */
.about-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.rich-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #666666;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

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

.rich-content p {
    margin-bottom: 1.5rem;
    color: #666666;
}

.rich-content ul,
.rich-content ol {
    margin: 1.5rem 0;
    padding-right: 2rem;
}

.rich-content li {
    margin-bottom: 0.75rem;
    color: #666666;
}

.rich-content strong,
.rich-content b {
    color: #1a1a1a;
    font-weight: 700;
}

.rich-content a {
    color: #2a160d;
    text-decoration: none;
    border-bottom: 1px solid #2a160d;
    transition: opacity 0.3s ease;
}

.rich-content a:hover {
    opacity: 0.7;
}

.rich-content blockquote {
    background: #f8f8f8;
    border-right: 4px solid #2a160d;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
    color: #1a1a1a;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.rich-content table th,
.rich-content table td {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    text-align: right;
}

.rich-content table th {
    background: #f8f8f8;
    font-weight: 700;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        display: block !important;
    }
    
    .about-content {
        padding: 30px 20px;
    }
    
    .rich-content {
        font-size: 1rem;
    }
    
    .rich-content h1 { font-size: 2rem; }
    .rich-content h2 { font-size: 1.75rem; }
    .rich-content h3 { font-size: 1.5rem; }
    .rich-content h4 { font-size: 1.25rem; }
}
