/* Current Situation & Plan Page Styling */
.situation-plan {
    padding: 60px 0;
}

/* Header Fixes */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

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

.section-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Agenda Section */
.agenda-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.agenda-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.objective-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.objective-box p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.agenda-list {
    counter-reset: agenda-counter;
    list-style: none;
    padding-left: 0;
}

.agenda-list > li {
    counter-increment: agenda-counter;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.agenda-list > li::before {
    content: counter(agenda-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.sub-list {
    margin-top: 15px;
    padding-left: 20px;
}

.sub-list li {
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Current Status Section */
.current-status-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.15);
}

.current-status-section h2 {
    color: #856404;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.warning-box {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #dc3545;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.warning-box h3 {
    color: #721c24;
    font-weight: 700;
    margin-bottom: 10px;
}

.warning-box p {
    color: #721c24;
    margin: 0;
    font-style: italic;
}

.headwinds-table td {
    vertical-align: top;
    padding: 15px;
}

.headwinds-table td:first-child {
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    width: 50px;
}

.headwinds-table td:nth-child(2) {
    width: 200px;
}

/* Realistic Plan Section */
.realistic-plan-section {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.realistic-plan-section h2 {
    color: #155724;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.plan-disclaimer {
    background: #fff;
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    font-style: italic;
    color: #155724;
}

.plan-table td {
    vertical-align: top;
    padding: 15px;
}

.plan-table td:first-child {
    font-weight: 700;
    color: #155724;
    width: 200px;
}

.plan-table td:nth-child(2) {
    width: 150px;
    font-weight: 600;
}

.plan-note {
    background: #fff;
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-style: italic;
    color: #155724;
    text-align: center;
}

/* Executive Summary Section */
.executive-summary-section {
    background: linear-gradient(135deg, #e8f4fd 0%, #d1ecf1 100%);
    border: 2px solid #17a2b8;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.15);
}

.executive-summary-section h2 {
    color: #0c5460;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.summary-list {
    counter-reset: summary-counter;
    list-style: none;
    padding-left: 0;
}

.summary-list > li {
    counter-increment: summary-counter;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.summary-list > li::before {
    content: counter(summary-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #17a2b8;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.next-step-box {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.next-step-box p {
    margin: 0;
    font-weight: 600;
    color: #155724;
    font-size: 1.1rem;
}

/* Table Styling */
.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border: none;
}

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

.table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.table tbody tr:hover {
    background-color: #e9ecef;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

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

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

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

.contact-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p {
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-card i {
    color: var(--primary-color);
    margin-right: 8px;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-button.primary {
    background: var(--primary-color);
    color: white;
}

.contact-button.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .situation-plan {
        padding: 40px 0;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .agenda-section,
    .current-status-section,
    .realistic-plan-section,
    .executive-summary-section {
        padding: 30px 20px;
    }
    
    .agenda-list > li,
    .summary-list > li {
        padding-left: 35px;
    }
    
    .agenda-list > li::before,
    .summary-list > li::before {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .logo-img {
        height: 50px;
    }
}

