/* Architecture Baseline Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: #1a202c;
    background-color: #f7fafc;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Compliance Banner */
.top-bar {
    background-color: #0f172a;
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid #1e293b;
}
.bar-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Structural Header & Brand Elements */
header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo {
    height: 50px;
    width: auto;
}
.logo-text h2 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1e3a8a;
}
.logo-text p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #b45309;
    font-weight: 600;
}
nav a {
    margin-left: 24px;
    color: #475569;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
nav a:hover, nav a.active {
    color: #1e3a8a;
}
.nav-cta {
    background-color: #b45309;
    color: white !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
}
.nav-cta:hover {
    background-color: #92400e;
}

/* Hero Section Branding with Visual Background Split */
.hero-split {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
    padding: 60px 0;
}
.hero-layout-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-left-content { 
    flex: 1.2; 
}
.hero-right-visual { 
    flex: 0.8; 
    display: flex; 
    justify-content: center; 
}
.featured-hero-img {
    width: 100%;
    max-width: 420px;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}
.sub-tagline {
    color: #f59e0b;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
}
.hero-split h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}
.main-para {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 35px;
}
.hero-actions .btn {
    margin-right: 15px;
}

/* Systemic UI Actions */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s, background-color 0.2s;
}
.btn-primary {
    background-color: #b45309;
    color: white;
}
.btn-primary:hover { 
    background-color: #92400e; 
}
.btn-secondary {
    border: 2px solid #cbd5e1;
    color: white;
}
.btn-secondary:hover { 
    background: rgba(255,255,255,0.1); 
}
.btn-emerald {
    background-color: #047857;
    color: white;
    font-size: 1.15rem;
    padding: 15px 35px;
    box-shadow: 0 4px 12px rgba(4,120,87,0.2);
}
.btn-emerald:hover { 
    background-color: #065f46; 
    transform: translateY(-1px); 
}

/* Structural Content Layout Assembly */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
}
.section-header h2 { 
    font-size: 2.2rem; 
    color: #0f172a; 
    margin-bottom: 12px; 
}
.section-header p { 
    color: #64748b; 
    font-size: 1.1rem; 
}

.three-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}
.p-card {
    background: white;
    padding: 35px 25px;
    border-radius: 8px;
    flex: 1;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border-top: 4px solid #1e3a8a;
}
.card-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
}
.card-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.p-card:hover .card-inner-img {
    transform: scale(1.05);
}
.p-card .icon { 
    font-size: 2rem; 
    margin-bottom: 15px; 
}
.p-card h3 { 
    margin-bottom: 12px; 
    font-size: 1.3rem; 
    color: #1e293b; 
}
.p-card p { 
    color: #475569; 
    font-size: 0.95rem; 
}

/* Inner Breadcrumb Display */
.inner-hero {
    background: #1e293b;
    color: white;
    padding: 50px 0;
}
.inner-hero h1 { 
    font-size: 2.2rem; 
    margin-bottom: 8px; 
}
.inner-hero p { 
    color: #94a3b8; 
}

/* Corporate Main Charter Objects Listing */
.objects-section { 
    background-color: white; 
    padding-bottom: 60px; 
}
.objects-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.obj-item {
    display: flex;
    gap: 24px;
    background: #f8fafc;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #b45309;
}
.obj-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #cbd5e1;
}
.obj-body h3 { 
    font-size: 1.2rem; 
    color: #1e3a8a; 
    margin-bottom: 6px; 
}
.obj-body p { 
    color: #334155; 
    font-size: 0.95rem; 
}

/* Visual Mid-Page Break for Credibility */
.about-visual-break {
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
}
.wide-break-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* Formal Compliance Registration Blocks */
.registry-section { 
    background: #f1f5f9; 
    padding: 60px 0; 
}
.grid-two { 
    display: flex; 
    gap: 30px; 
}
.registry-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.registry-card h2 { 
    font-size: 1.4rem; 
    margin-bottom: 20px; 
    color: #0f172a; 
    border-bottom: 2px solid #e2e8f0; 
    padding-bottom: 8px; 
}
.registry-card ul { 
    list-style: none; 
}
.registry-card li { 
    margin-bottom: 12px; 
    font-size: 1rem; 
    color: #334155; 
}

/* Donation Call to Action Spaces */
.donation-block { 
    background: #e2e8f0; 
    text-align: center; 
    padding: 60px 0; 
}
.donate-wrapper { 
    max-width: 700px; 
    margin: 0 auto; 
    background: white; 
    padding: 50px 30px; 
    border-radius: 12px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
}
.donate-wrapper h2 { 
    font-size: 2rem; 
    margin-bottom: 12px; 
    color: #0f172a; 
}
.donate-wrapper p { 
    color: #475569; 
    margin-bottom: 30px; 
}
.exemption-ribbon { 
    margin-top: 25px; 
    padding: 10px; 
    background: #f8fafc; 
    border-radius: 4px; 
    font-size: 0.9rem; 
    color: #64748b; 
}

/* Contact Page Form Element Additions */
.contact-section { 
    background: #ffffff; 
    padding-bottom: 60px;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}

/* Footer Configurations */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 50px 0;
    border-top: 1px solid #1e293b;
    font-size: 0.9rem;
}
.footer-grid { 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 30px; 
}
.address-footer { 
    max-width: 400px; 
    margin-top: 10px; 
    color: #64748b; 
    font-size: 0.85rem; 
    text-align: left;
}
.footer-meta { 
    text-align: right; 
}
.footer-meta p { 
    margin-bottom: 8px; 
}

/* System Responsive Adjustments */
@media (max-width: 768px) {
    .navbar, .three-grid, .grid-two, .footer-grid { 
        flex-direction: column; 
        text-align: center; 
    }
    .bar-flex { 
        flex-direction: column; 
        align-items: center; 
        gap: 4px; 
    }
    .logo-area { 
        flex-direction: column; 
    }
    .footer-meta { 
        text-align: center; 
    }
    nav a { 
        display: block; 
        margin: 12px 0; 
    }
    .hero-split h1 { 
        font-size: 2.2rem; 
    }
    .address-footer {
        text-align: center;
    }
    .hero-layout-grid { 
        flex-direction: column; 
        text-align: center; 
    }
    .hero-right-visual { 
        width: 100%; 
        margin-top: 20px; 
    }
    .featured-hero-img { 
        height: 280px; 
    }
    .about-visual-break { 
        height: 220px; 
    }
}
