/* General 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;
}

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar span {
    margin-right: 20px;
}

.top-bar .btn-apply {
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.top-bar .btn-apply:hover {
    background: #e55a2b;
    color: white;
}

/* Header */
.main-header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1e3c72;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
}

.logo-text p {
    font-size: 14px;
    margin: 0;
    color: #ff6b35;
}

@media (max-width: 768px) {
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo-img {
        height: 85px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text p {
        font-size: 12px;
    }
}

/* Navigation */
.main-nav .nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav .nav-menu li {
    position: relative;
    margin-left: 30px;
}

.main-nav .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.main-nav .nav-menu a:hover {
    color: #1e3c72;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #1e3c72;
}

/* Nested dropdown styles */
.dropdown-menu .dropdown {
    position: relative;
}

.dropdown-menu .dropdown .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0;
    min-width: 200px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    z-index: 1001;
}

.dropdown-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown > a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    margin-left: 10px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0f0f0" width="1200" height="600"/><path fill="%23e0e0e0" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: #ff6b35;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Quick Access Section */
.quick-access {
    padding: 80px 0;
    background: #f8f9fa;
}

.quick-access-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.quick-access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.quick-access-card i {
    font-size: 48px;
    color: #1e3c72;
    margin-bottom: 20px;
}

.quick-access-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.quick-access-card p {
    color: #666;
    margin-bottom: 20px;
    min-height: 60px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #1e3c72;
    color: #1e3c72;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline:hover {
    background: #1e3c72;
    color: white;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 50px;
    font-weight: bold;
}

.news-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-3px);
}

.news-card h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 18px;
}

.news-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e55a2b;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff6b35;
}

.stat-item p {
    font-size: 16px;
    margin: 0;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.main-footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    margin-top: 3px;
    color: #ff6b35;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #1e3c72;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar .row {
        text-align: center;
    }
    
    .top-bar .col-md-4 {
        margin-top: 10px;
    }
    
    .main-header .row {
        text-align: center;
    }
    
    .main-nav .nav-menu {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    
    .main-nav .nav-menu li {
        margin: 5px 0;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .quick-access .row > div {
        margin-bottom: 30px;
    }
    
    .news-section .row > div {
        margin-bottom: 30px;
    }
    
    .stats-section .row > div {
        margin-bottom: 30px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 0 30px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

/* Main Content Styles */
.main-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.collections-intro,
.services-intro {
    margin-bottom: 60px;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text h2 {
    color: #1e3c72;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.intro-text p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

/* Vision & Mission Styles */
.vision-mission-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vision-section,
.mission-section {
    margin-bottom: 40px;
}

.vision-section h2,
.mission-section h2 {
    color: #1e3c72;
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-section i,
.mission-section i {
    color: #ff6b35;
}

.vision-text,
.mission-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.mission-text ul {
    margin-top: 20px;
}

.mission-text li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.mission-text strong {
    color: #1e3c72;
}

.core-values-section {
    margin-bottom: 40px;
}

.core-values-section h2 {
    color: #1e3c72;
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.core-values-section i {
    color: #ff6b35;
}

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

.value-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 48px;
    color: #1e3c72;
    margin-bottom: 20px;
}

.value-item h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 20px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.strategic-objectives-section h2 {
    color: #1e3c72;
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strategic-objectives-section i {
    color: #ff6b35;
}

.objectives-list {
    margin-top: 30px;
}

.objective-item {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.objective-item h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 18px;
}

.objective-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    color: #1e3c72;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #ff6b35;
}

.quick-links i {
    color: #1e3c72;
    width: 20px;
}

.stats-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stats-widget .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 10px;
}

.services-list a {
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
}

.services-list a:hover {
    color: #ff6b35;
}

/* Services Page Styles */
.services-grid {
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 48px;
    color: #1e3c72;
}

.service-card h3 {
    color: #1e3c72;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.btn-service {
    background: #1e3c72;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #2a5298;
    color: white;
}

/* Facilities Section */
.facilities-section {
    margin-bottom: 60px;
}

.section-title {
    color: #1e3c72;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.facility-item {
    text-align: center;
    margin-bottom: 30px;
}

.facility-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.facility-item h4 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.facility-item p {
    color: #666;
    line-height: 1.6;
}

/* Service Hours */
.service-hours-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hours-table {
    max-width: 500px;
    margin: 0 auto;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.hours-row.special {
    background: #f8f9fa;
    margin: 0 -20px -15px -20px;
    padding: 15px 20px;
    border-radius: 0 0 10px 10px;
}

.day {
    font-weight: 500;
    color: #333;
}

.time {
    color: #666;
}

/* Collections Page Styles */
.collection-galleries {
    margin-bottom: 60px;
}

.gallery-title {
    color: #1e3c72;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.gallery-caption p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.collection-categories {
    margin-bottom: 60px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    margin-bottom: 30px;
}

.category-icon {
    text-align: center;
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 48px;
    color: #1e3c72;
}

.category-card h3 {
    color: #1e3c72;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.collection-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
}

.stat .label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.collection-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collection-highlights li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.collection-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
}

/* Library Showcase */
.library-showcase {
    margin-bottom: 60px;
}

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

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.showcase-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.showcase-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Collection Access */
.collection-access {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.access-options {
    margin-top: 30px;
}

.access-option {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease;
}

.access-option:hover {
    transform: translateY(-5px);
}

.access-option i {
    font-size: 48px;
    color: #1e3c72;
    margin-bottom: 20px;
}

.access-option h4 {
    color: #1e3c72;
    margin-bottom: 15px;
}

.access-option p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Gallery Page Styles */
.gallery-sections {
    margin-bottom: 60px;
}

.gallery-section {
    margin-bottom: 60px;
}

.gallery-section .section-title {
    margin-bottom: 40px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.gallery-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Virtual Tour Section */
.virtual-tour-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tour-content {
    text-align: center;
}

.tour-description h3 {
    color: #1e3c72;
    font-size: 28px;
    margin-bottom: 20px;
}

.tour-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tour-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tour-feature {
    text-align: center;
}

.tour-feature i {
    font-size: 48px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.tour-feature h4 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 18px;
}

.tour-feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Featured Sections */
.featured-sections {
    padding: 80px 0;
    background: white;
}

.featured-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-icon {
    margin-bottom: 20px;
}

.featured-icon i {
    font-size: 48px;
    color: #1e3c72;
}

.featured-card h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 20px;
}

.featured-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}
