/* ==========================================
   Enhanced Business Sections Styles
   ========================================== */

/* ==========================================
   1. U.S. Military Base Section Styles
   ========================================== */

/* Military Stats Grid */
.military-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Military Description */
.military-description {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.description-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.military-bases h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #1e3c72;
    font-size: 1.1rem;
}

.bases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.base-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    border-left: 4px solid #1e3c72;
    transition: background-color 0.3s ease;
}

.base-item:hover {
    background: #e3f2fd;
}

.base-item i {
    color: #1e3c72;
    font-size: 1.2rem;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.capability-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.capability-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.capability-icon {
    font-size: 2rem;
    opacity: 0.9;
}

.capability-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.capability-content {
    padding: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #1e3c72;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Project Summary */
.project-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

.summary-header {
    text-align: center;
    margin-bottom: 30px;
}

.summary-header h4 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.summary-description {
    color: #666;
    font-style: italic;
}

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

.achievement-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.achievement-icon {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.5rem;
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 5px;
}

.achievement-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.achievement-detail {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

/* Projects Section */
.projects-section {
    margin-top: 40px;
}

.projects-section h4 {
    color: #1e3c72;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.project-table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-table table {
    width: 100%;
    border-collapse: collapse;
}

.project-table th {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    border: none;
}

.project-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.project-table tbody tr:hover {
    background: #f8f9fa;
}

.project-name .project-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.project-name i {
    color: #1e3c72;
    font-size: 1.1rem;
}

.discipline-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.discipline-tag.electrical {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.discipline-tag.mechanical {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.discipline-tag.mixed {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #c6c8ca;
}

.discipline-tag.integrated {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.period {
    color: #495057;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.status-badge.completed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-badge.ongoing {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b3d7ff;
}

/* Competency Showcase */
.competencies-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.competencies-intro p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.competency-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.competency-item.featured {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.competency-item.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #1e3c72;
}

.competency-icon-large {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2rem;
}

.competency-content h4 {
    text-align: center;
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.competency-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    font-size: 0.8rem;
    color: #495057;
}

.highlight-tag i {
    color: #1e3c72;
}

/* Success Metrics */
.success-metrics {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.success-metrics h4 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

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

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffd700;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .military-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .military-description {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .competency-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-table {
        font-size: 0.9rem;
    }
    
    .project-table th,
    .project-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .military-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .project-table-container {
        overflow-x: auto;
    }
    
    .project-table {
        min-width: 600px;
    }
}

/* Block Title with Icons */
.block-title i {
    margin-right: 10px;
    color: #1e3c72;
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-block {
    animation: fadeInUp 0.6s ease-out;
}

.content-block:nth-child(2) {
    animation-delay: 0.2s;
}

.content-block:nth-child(3) {
    animation-delay: 0.4s;
}

/* ==========================================
   2. Renewable Energy Section Styles
   ========================================== */

/* Renewable Energy Stats Grid */
.renewable-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Target Markets */
.target-markets {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.target-markets h4 {
    color: #28a745;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.market-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.market-item:hover {
    transform: translateY(-3px);
}

.market-flag {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.market-name {
    font-weight: 600;
    color: #495057;
}

/* Projects Grid for Renewable */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.project-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.project-card.wind {
    border-left: 4px solid #17a2b8;
}

.project-card.solar {
    border-left: 4px solid #ffc107;
}

.project-card.hydrogen {
    border-left: 4px solid #28a745;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.project-card.wind .project-icon {
    color: #17a2b8;
}

.project-card.solar .project-icon {
    color: #ffc107;
}

.project-card.hydrogen .project-icon {
    color: #28a745;
}

.project-info h5 {
    color: #343a40;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.project-name {
    font-weight: 600;
    color: #495057;
}

.project-capacity {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #6c757d;
}

/* Current Status Section */
.current-status-section {
    margin-top: 40px;
}

.status-title {
    color: #495057;
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-subtitle {
    color: #6c757d;
    margin-bottom: 25px;
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.status-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.status-card.primary {
    border-left: 4px solid #007bff;
}

.status-card.secondary {
    border-left: 4px solid #6c757d;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.status-flag {
    font-size: 2rem;
}

.status-icon {
    font-size: 2rem;
    color: #6c757d;
}

.status-header h5 {
    color: #343a40;
    margin: 0;
    flex: 1;
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #495057;
}

.detail-item i {
    color: #6c757d;
    width: 20px;
}

/* Value Chain */
.value-chain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.chain-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.chain-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 10px;
}

.chain-content h5 {
    color: #495057;
    margin-bottom: 5px;
    font-size: 1rem;
}

.chain-content p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

.chain-arrow {
    font-size: 1.5rem;
    color: #28a745;
    font-weight: bold;
}

/* Enhanced Value Chain Design */
.value-chain-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f7f5 100%);
    border-radius: 12px;
    border: 1px solid #d4edda;
}

.chain-description {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.value-chain-enhanced {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.chain-phase {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 20px;
}

.chain-phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.chain-phase.phase-1 {
    border-left: 5px solid #007bff;
}

.chain-phase.phase-2 {
    border-left: 5px solid #28a745;
}

.chain-phase.phase-3 {
    border-left: 5px solid #ffc107;
}

.chain-phase.phase-4 {
    border-left: 5px solid #fd7e14;
}

.chain-phase.phase-5 {
    border-left: 5px solid #dc3545;
}

.chain-phase.phase-6 {
    border-left: 5px solid #6f42c1;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.phase-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.phase-title {
    flex: 1;
}

.phase-title h4 {
    color: #2c3e50;
    margin: 0 0 5px 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.phase-subtitle {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
}

.phase-content .chain-icon {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #495057;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chain-details {
    flex: 1;
}

.chain-details h5 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.chain-details p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

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

.detail-list li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.detail-list li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.chain-connector {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #dee2e6 0%, #adb5bd 50%, #dee2e6 100%);
}

.connector-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Value Proposition */
.value-proposition {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

.proposition-header {
    text-align: center;
    margin-bottom: 30px;
}

.proposition-header h4 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

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

.proposition-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.proposition-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.prop-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.prop-content h5 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.prop-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================
   3. Green Hydrogen Section Styles
   ========================================== */

/* Hydrogen Stats Grid */
.hydrogen-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Technology Process */
.technology-process {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    border-left: 4px solid #2196f3;
}

.technology-process h4 {
    color: #1976d2;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.step-name {
    font-weight: 600;
    color: #1976d2;
    font-size: 0.9rem;
}

.process-arrow {
    font-size: 1.5rem;
    color: #1976d2;
    font-weight: bold;
}

/* Domestic Projects for Hydrogen */
.domestic-projects {
    margin-top: 20px;
}

.project-location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.location-name {
    font-weight: 600;
    color: #495057;
}

.project-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.project-status.completed {
    color: #28a745;
}

.project-status.completed i {
    color: #28a745;
}

.total-capacity {
    margin-top: 15px;
    padding: 10px;
    background: #e8f5e8;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    color: #28a745;
}

/* Production Scale */
.production-scale {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.scale-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.scale-icon {
    font-size: 2rem;
}

.scale-info {
    display: flex;
    flex-direction: column;
}

.scale-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #495057;
}

.scale-unit {
    font-size: 0.85rem;
    color: #6c757d;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.status-badge.agreement {
    background: #d4edda;
    color: #155724;
}

.next-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #495057;
    font-style: italic;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.advantage-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.advantage-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
}

.advantage-card h4 {
    color: #343a40;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Project Timeline */
.project-timeline {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.timeline-title {
    color: #495057;
    font-size: 1.3rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: white;
}

.timeline-item.completed .timeline-marker {
    background: #28a745;
    border-color: #28a745;
}

.timeline-item.current .timeline-marker {
    background: #007bff;
    border-color: #007bff;
}

.timeline-item.future .timeline-marker {
    background: #6c757d;
    border-color: #6c757d;
}

.timeline-content h5 {
    color: #343a40;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.achievements-section {
    margin-top: 40px;}
.achievements-title{
    color: #495057;
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex
;
    align-items: center;
    gap: 10px;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .renewable-stats-grid,
    .hydrogen-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .value-chain {
        flex-direction: column;
    }
    
    .chain-arrow {
        transform: rotate(90deg);
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .production-scale {
        grid-template-columns: 1fr;
    }
    
    /* Enhanced Value Chain Mobile */
    .chain-phase {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .phase-content {
        align-items: center;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .phase-content .chain-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        align-self: center;
    }
    
    .phase-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .proposition-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .proposition-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .prop-icon {
        align-self: center;
    }
    
    .value-chain-intro {
        padding: 20px;
    }
    
    .chain-description {
        font-size: 1rem;
    }
    
    .value-proposition {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .phase-header {
        gap: 10px;
    }
    
    .phase-title h4 {
        font-size: 1.2rem;
    }
    
    .phase-subtitle {
        font-size: 0.8rem;
    }
    
    .chain-details h5 {
        font-size: 1.1rem;
    }
    
    .chain-details p {
        font-size: 0.9rem;
    }
    
    .detail-list li {
        font-size: 0.85rem;
    }
    
    .proposition-header h4 {
        font-size: 1.3rem;
    }
    
    .prop-content h5 {
        font-size: 1rem;
    }
    
    .prop-content p {
        font-size: 0.85rem;
    }
}

.content-block:nth-child(4) {
    animation-delay: 0.6s;
}
