        .war-hero {
            background-image: url(../bannera/LUFTT.png);
            background-repeat: no-repeat;
            background-size: cover;
            height: 751px;
            background-color: rgba(0, 0, 0, 0.8);
            background-blend-mode: overlay;
            display: flex;
            flex-direction: column;
        }

        .war-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .war-section {
            margin-bottom: 60px;
        }

        .war-section h2 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 36px;
            color: #04091e;
            margin-bottom: 20px;
            border-left: 5px solid rgb(198, 176, 105);
            padding-left: 20px;
        }

        .war-section p {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }

        /* Conflict Cards */
        .conflict-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .conflict-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
            position: relative;
        }

        .conflict-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .conflict-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: rgb(198, 176, 105);
        }

        .conflict-image {
            height: 200px;
            background: #04091e;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(198, 176, 105);
            font-size: 60px;
        }

        .conflict-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .conflict-content {
            padding: 25px;
        }

        .conflict-date {
            display: inline-block;
            background: rgb(198, 176, 105);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .conflict-content h3 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 24px;
            color: #04091e;
            margin-bottom: 15px;
        }

        .conflict-content p {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        .conflict-stats {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .conflict-stat {
            text-align: center;
        }

        .conflict-stat h4 {
            font-size: 20px;
            color: #04091e;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .conflict-stat span {
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
        }

        /* Timeline */
        .war-timeline {
            position: relative;
            padding: 40px 0;
        }

        .war-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: rgb(198, 176, 105);
        }

        .timeline-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 50px;
            position: relative;
        }

        .timeline-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 30px;
            width: 20px;
            height: 20px;
            background: rgb(198, 176, 105);
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 3px rgb(198, 176, 105);
        }

        .timeline-row:nth-child(odd) .timeline-content::before {
            right: -60px;
        }

        .timeline-row:nth-child(even) .timeline-content::before {
            left: -60px;
        }

        .timeline-year {
            font-size: 14px;
            color: rgb(198, 176, 105);
            font-weight: bold;
            margin-bottom: 10px;
        }

        .timeline-content h3 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 22px;
            color: #04091e;
            margin-bottom: 10px;
        }

        .timeline-content p {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Hero Section */
        .heroes-section {
            background: #04091e;
            padding: 80px 20px;
        }

        .heroes-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .heroes-content h2 {
            color: white;
            text-align: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 36px;
            margin-bottom: 50px;
        }

        .heroes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: 0.3s;
            backdrop-filter: blur(10px);
        }

        .hero-card:hover {
            background: rgba(198, 176, 105, 0.1);
            border-color: rgb(198, 176, 105);
            transform: translateY(-5px);
        }

        .hero-icon {
            width: 80px;
            height: 80px;
            background: rgb(198, 176, 105);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: #04091e;
        }

        .hero-card h3 {
            color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 22px;
            margin-bottom: 10px;
        }

        .hero-card p {
            color: rgba(255, 255, 255, 0.7);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 15px;
            line-height: 1.6;
        }

        /* Memorial Section */
        .memorial-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../bannera/LUFTT.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

        .memorial-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .memorial-content h2 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 48px;
            margin-bottom: 30px;
        }

        .memorial-content p {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 20px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .candle {
            font-size: 60px;
            color: rgb(198, 176, 105);
            margin-bottom: 20px;
            animation: flicker 2s infinite;
        }

        @keyframes flicker {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.8;
            }
        }

        /* Statistics */
        .war-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .stat-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 4px solid rgb(198, 176, 105);
        }

        .stat-box h3 {
            font-size: 48px;
            color: #04091e;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin-bottom: 10px;
        }

        .stat-box p {
            color: #666;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .war-hero {
                height: auto;
                min-height: 400px;
            }

            .war-timeline::before {
                left: 20px;
            }

            .timeline-row,
            .timeline-row:nth-child(even) {
                flex-direction: column;
                padding-left: 50px;
            }

            .timeline-content {
                width: 100%;
            }

            .timeline-content::before {
                left: -40px !important;
                right: auto !important;
            }

            .conflict-grid {
                grid-template-columns: 1fr;
            }

            .memorial-content h2 {
                font-size: 32px;
            }
        }