:root {
    --primary: #353674;
    --primary-dark: #4F46E5;
    --primary-deep: #4F46E5;
    --primary-light: #EEF2FF;
    --accent: #3F83F8;
    --bg-white: #FFFFFF;
    --bg-deep: #0A1928;
    --bg-card: #0F2A3F;
    --text-primary: #111928;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --success: #057A55;
    --danger: #E02424;
    --footer-bg: #071426;
    --card-shadow: 0 4px 24px rgba(26, 86, 219, 0.08);
    --gold: #B8860B;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

main {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 68px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    line-height: 1.2;
}

h1 { font-size: 52px; font-weight: 700; }
h2 { font-size: 38px; font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.main-nav a {
    color: #fff !important;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 1;
    min-width: 0;
    color: #fff;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: #fff;
}

.brand-name {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    display: block;
}

.tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    flex-shrink: 0;
    color: #fff;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-cta {
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
}

.w-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 80px;
    background: var(--bg-white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-icon {
    color: var(--primary);
    margin-bottom: 10px;
}
.stat-icon i {
    width: 24px;
    height: 24px;
}

.stat-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    width: 380px;
    box-shadow: var(--card-shadow);
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.user-name {
    font-weight: 600;
    font-size: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
}

.mock-balance {
    margin-bottom: 24px;
}

.mock-balance .label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

.mock-balance .amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.mock-loan {
    background: var(--primary-light);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.loan-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.loan-amount {
    font-weight: 600;
}

.progress-container {
    height: 6px;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
}

.progress-text {
    font-size: 12px;
    color: var(--text-muted);
}

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

.amount-pill {
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.section-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.service-cat-title {
    margin-bottom: 20px;
}


.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 10px;
}

.service-category {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: 0.3s ease;
}
.service-category:hover {
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
}
.product-list {
    list-style: none;
    padding: 0;
}
.product-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 15px;
    display: flex;
    align-items: center;
}
.product-list li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
}
.product-list li:last-child {
    border-bottom: none;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.membership-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.membership-card.highlight-card {
    background: var(--primary);
    color: #fff;
}

.membership-card.highlight-card .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.white-text {
    color: #fff;
}

.muted-white-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.momo-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .value {
    font-weight: 600;
}

.digital-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.digital-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.digital-steps {
    padding-left: 20px;
    color: var(--text-muted);
    line-height: 2;
}

.digital-steps ul {
    list-style: none;
    padding-left: 15px;
    font-size: 14px;
}

.digital-card:nth-child(2) .digital-steps {
    list-style: none;
    padding: 0;
}

.digital-note {
    margin-top: 20px;
    padding: 10px;
    background: #FFFBEB;
    border-left: 4px solid #F59E0B;
    font-size: 13px;
    color: #92400E;
}
.about-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 60px;
    align-items: center;
}

.about-card {
    background: var(--primary);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
}

.about-card h3 {
    color: #fff;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.value-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-checklist {
    list-style: none;
    margin-top: 32px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 500;
}
.about-checklist li i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

/* About Gallery */
.gallery-wrapper {
    margin-top: 60px;
    text-align: center;
}

.gallery-header {
    margin-bottom: 30px;
}

.gallery-header h3 {
    margin-bottom: 10px;
}

.gallery-header p {
    color: var(--text-muted);
    font-size: 15px;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Board Members Section */
.board-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.board-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.board-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
}

.board-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-light);
}

.board-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-info h3 {
    margin-bottom: 8px;
}

.board-role {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.board-info p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: var(--primary-light);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calc-card, .results-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-item {
    text-align: center;
    margin-bottom: 32px;
}

.result-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.result-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.result-subitem {
    text-align: center;
}

.result-subvalue {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.result-footer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    font-weight: 600;
}

.calc-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--primary-light);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

/* Announcements Section */
.announcements-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.announcement-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: 0.3s ease;
    position: relative;
}

.announcement-card:hover {
    box-shadow: var(--card-shadow);
}

.announcement-card.pinned {
    border-left: 4px solid var(--primary);
}

.announcement-card.urgent {
    border-left: 4px solid var(--danger);
}

.announcement-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cat-general { background: var(--primary-light); color: var(--primary); }
.cat-loan { background: #D1E3FF; color: var(--primary-dark); }
.cat-event { background: #F3E8FF; color: #7E22CE; }
.cat-urgent { background: #FEE2E2; color: var(--danger); }

.announcement-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.announcement-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.announcement-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 60px;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon i {
    color: #fff;
    width: 20px;
    height: 20px;
}

.info-text .label {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.info-text .detail {
    color: var(--text-muted);
    font-size: 15px;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.success-msg {
    display: none;
    margin-top: 20px;
    padding: 12px;
    background: #ECFDF5;
    color: var(--success);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.input-error {
    border-color: var(--danger) !important;
}

.map-container {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.map-container iframe {
    display: block;
}

/* Footer */
.main-footer {
    background: var(--footer-bg);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-links h4, .footer-services h4 {
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 24px;
    color: #fff;
}

.footer-links ul, .footer-services ul {
    list-style: none;
}

.footer-links li, .footer-services li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-services li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.bottom-grid {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Carousel Styles */
.digital-images-desktop {
    display: flex !important;
}

.digital-images-mobile {
    display: none;
}

.board-grid-desktop {
    display: grid !important;
}

.board-carousel-container-mobile {
    display: none;
}

.carousel-container {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Wendi Gallery */
.wendi-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.wendi-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
    height: 100%;
}

.wendi-card:hover {
    transform: translateY(-10px);
}

.wendi-gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Founders Section */
.founders-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.founder-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.1);
}

.founder-card.memorial {
    background: #F9FAFB;
    border-bottom: 4px solid var(--gold);
}

.founder-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-light);
    position: relative;
}

.founder-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-icon {
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.placeholder-icon i {
    width: 60px;
    height: 60px;
}

.memorial-badge-top {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.memorial-badge-top i {
    width: 16px;
    height: 16px;
}

.founder-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.badge-founding {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.badge-memorial {
    background: #E5E7EB;
    color: #4B5563;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    font-style: italic;
}

.founder-info h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.founder-role {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.founder-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.founders-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.founders-footer p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-muted);
    font-size: 18px;
}

