:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: rgba(255,255,255,0.95) !important;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    padding: 0.8rem 1.2rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.news-slider {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin-top: -1px;
}

.carousel-item .card {
    border: none;
    transition: transform 0.3s ease;
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-title {
    font-weight: 600;
    color: var(--primary-color);
}

.social-links a {
    color: var(--secondary-color);
    margin-right: 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.timeline-item {
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 25px;
    background: #fff;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.btn {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    margin-top: 5rem;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.profile-section {
    background: #fff;
    padding: 5rem 0;
}

.news-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.incidents-section {
    background: #fff;
    padding: 5rem 0;
}

.media-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
    margin-top: -1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Table Styles */
.data-section {
    background: #fff;
    padding: 5rem 0;
}

.custom-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.custom-table thead {
    background: var(--primary-color);
    color: #fff;
}

.custom-table th {
    padding: 1.2rem;
    font-weight: 600;
}

.custom-table td {
    padding: 1rem;
    vertical-align: middle;
}

.custom-table tbody tr {
    transition: all 0.3s ease;
}

.custom-table tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transform: translateX(5px);
}

/* Twitter Timeline */
.twitter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.twitter-timeline-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 650px;
    overflow: hidden;
}

/* Instagram Feed */
.instagram-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-media {
    background: #FFF !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 540px !important;
    min-width: 326px !important;
}

.instagram-wrapper .mt-4 {
    margin-top: 2rem !important;
}

.instagram-wrapper .mt-4:last-child {
    margin-bottom: 0;
}

.instagram-wrapper h5,
.twitter-timeline-wrapper h5 {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .news-slider {
        padding: 2rem 0;
    }
    
    .timeline-item {
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .custom-table {
        font-size: 0.9rem;
    }
    
    .sns-section {
        padding: 3rem 0;
    }
    
    .instagram-wrapper {
        padding: 1rem;
    }
    
    .instagram-media {
        margin: 0 -1rem !important;
        border-radius: 0 !important;
    }
}

/* SNS Section */
.sns-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.twitter-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    height: 800px;
    overflow: hidden;
}

.twitter-wrapper iframe {
    border-radius: 12px !important;
}

@media (max-width: 768px) {
    .sns-section {
        padding: 3rem 0;
    }
    
    .twitter-wrapper {
        padding: 1rem;
        height: 600px;
    }
}

/* Profile Page Styles */
.profile-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    margin-top: -1px;
}

.profile-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.profile-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.profile-quick-info {
    font-size: 1.1rem;
}

.profile-quick-info p {
    margin-bottom: 0.5rem;
}

.profile-quick-info i {
    color: var(--primary-color);
    width: 25px;
    margin-right: 10px;
}

.profile-image img {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.02);
}

/* Basic Info Section */
.profile-basic-info {
    padding: 5rem 0;
    background: #fff;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-card .table th {
    width: 30%;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Timeline Section */
.profile-timeline {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    background: #fff;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-item .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Family Section */
.profile-family {
    padding: 5rem 0;
    background: #fff;
}

.family-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

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

.family-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.family-content h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Current Status Section */
.profile-current-status {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.status-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.status-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.status-details ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.status-details ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.status-details ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .profile-header {
        padding: 3rem 0;
        text-align: center;
    }
    
    .profile-title {
        font-size: 2.5rem;
    }
    
    .profile-image {
        margin-bottom: 2rem;
    }
    
    .timeline-item {
        margin-left: 0;
    }
    
    .family-card {
        margin-bottom: 1.5rem;
    }
}

/* Incidents Page Styles */
.incidents-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin-top: -1px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.incidents-timeline {
    padding: 5rem 0;
    background: #fff;
}

.timeline-item.major-incident {
    border-left-color: #dc3545;
}

.timeline-item.major-incident .incident-date {
    color: #dc3545;
}

.incident-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.incident-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.incident-details {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #e9ecef;
}

.incident-details ul {
    list-style: none;
    padding-left: 0;
}

.incident-details ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.incident-details ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.incidents-details {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.incident-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

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

.incident-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.incident-info h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.expert-analysis {
    background: #fff;
    padding: 5rem 0;
}

.expert-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.expert-quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.expert-info {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .incidents-header {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .incident-card {
        margin-bottom: 1.5rem;
    }
    
    .timeline-item {
        margin-left: 0;
    }
}

/* Media Page Styles */
.media-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin-top: -1px;
}

.media-tv {
    background: #fff;
    padding: 5rem 0;
}

.media-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

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

.media-list {
    list-style: none;
    padding: 0;
}

.media-list li {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.media-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.media-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-list h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.media-magazine {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.media-details ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.media-details ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.media-details ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.media-sns {
    background: #fff;
    padding: 5rem 0;
}

.sns-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.sns-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sns-stats {
    margin: 1.5rem 0;
}

.sns-status {
    color: #dc3545;
    font-weight: 600;
    margin-top: 1rem;
}

.media-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.summary-points {
    margin-top: 2rem;
}

.summary-points ul {
    list-style: none;
    padding-left: 0;
}

.summary-points ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.summary-points ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .media-header {
        padding: 3rem 0;
    }
    
    .media-card {
        margin-bottom: 1.5rem;
    }
    
    .sns-card {
        margin-bottom: 1.5rem;
    }
    
    .media-tv,
    .media-magazine,
    .media-sns,
    .media-summary {
        padding: 3rem 0;
    }
}

/* Gallery Page Styles */
.gallery-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin-top: -1px;
}

.gallery-filter {
    background: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-buttons .btn {
    min-width: 120px;
    transition: all 0.3s ease;
}

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

.gallery-grid {
    background: #fff;
    padding: 4rem 0;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.gallery-info {
    text-align: center;
    color: #fff;
    padding: 1rem;
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    margin: 0;
}

.gallery-categories {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.category-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--secondary-color);
    margin: 0;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

.lb-closeContainer {
    position: absolute;
    top: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-header {
        padding: 3rem 0;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .gallery-card img {
        height: 250px;
    }
    
    .category-card {
        margin-bottom: 1.5rem;
    }
    
    .gallery-grid {
        padding: 2rem 0;
    }
    
    .gallery-categories {
        padding: 3rem 0;
    }
}

/* Incident Detail Page Styles */
.article-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin-top: -1px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-meta {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.article-meta span {
    margin-right: 2rem;
}

.article-meta i {
    margin-right: 0.5rem;
}

.incident-summary {
    padding: 4rem 0;
    background: #fff;
}

.summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.summary-content .lead {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.key-points {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.key-points h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.key-points ul {
    list-style: none;
    padding-left: 0;
}

.key-points ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.key-points ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.incident-status {
    text-align: center;
}

.status-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.status-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.status-item h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.incident-timeline {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.incident-impact {
    background: #fff;
    padding: 4rem 0;
}

.impact-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
}

.impact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.impact-card ul {
    list-style: none;
    padding-left: 0;
}

.impact-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.impact-card ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.related-articles {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

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

.article-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.article-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .article-header {
        padding: 3rem 0;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta span {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .incident-summary,
    .incident-timeline,
    .incident-impact,
    .related-articles {
        padding: 3rem 0;
    }
    
    .impact-card {
        margin-bottom: 1.5rem;
    }
    
    .article-card {
        margin-bottom: 1.5rem;
    }
}

/* Timeline Box Styles */
.timeline-box {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.timeline-list {
    list-style: none;
    padding: 0;
    position: relative;
}

.timeline-list:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-list li {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-list li:before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
}

.timeline-list .time {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Post Box Styles */
.post-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.social-post {
    border-left: 4px solid #1DA1F2;
    margin: 0;
    padding: 1rem 0 1rem 2rem;
}

.social-post p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.social-post footer {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Apology Box Styles */
.apology-box {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.apology-box blockquote {
    border-left: 4px solid #dc3545;
    margin: 0;
    padding: 1rem 0 1rem 2rem;
}

/* Impact Box Styles */
.impact-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.impact-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.impact-box ul {
    list-style: none;
    padding-left: 0;
}

.impact-box ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.impact-box ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Expert Comments Section Styles */
.expert-comments {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin: 3rem 0;
}

.expert-comments .comment-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.expert-comments blockquote {
    border-left: 4px solid var(--primary-color);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.expert-comments h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline-list li {
        padding-left: 1.5rem;
    }
    
    .social-post,
    .apology-box blockquote {
        padding-left: 1rem;
    }
    
    .expert-comments {
        padding: 2rem 0;
    }
    
    .expert-comments .comment-card {
        margin-bottom: 1.5rem;
    }
} 