/* Ghana IMF Bailout Plugin Styles */
#ghana-imf-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#ghana-imf-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

#ghana-imf-page .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 100vh;
}

#ghana-imf-page .content-section {
    flex: 1;
    max-width: 500px;
}

#ghana-imf-page .browser-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

#ghana-imf-page .browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

#ghana-imf-page .dot-red { 
    background-color: #ff5f56; 
}

#ghana-imf-page .dot-yellow { 
    background-color: #ffbd2e; 
}

#ghana-imf-page .dot-green { 
    background-color: #27ca3f; 
}

#ghana-imf-page .main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.1;
    margin-bottom: 20px;
}

#ghana-imf-page .highlight-text {
    color: #2ecc71;
}

#ghana-imf-page .subtitle {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
}

#ghana-imf-page .info-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

#ghana-imf-page .info-card {
    padding: 20px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    min-width: 120px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ghana-imf-page .info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

#ghana-imf-page .card-red { 
    background: linear-gradient(135deg, #e74c3c, #c0392b); 
}

#ghana-imf-page .card-yellow { 
    background: linear-gradient(135deg, #f39c12, #e67e22); 
}

#ghana-imf-page .card-green { 
    background: linear-gradient(135deg, #2ecc71, #27ae60); 
}

#ghana-imf-page .card-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

#ghana-imf-page .card-value {
    font-size: 1.3rem;
    font-weight: 700;
}

#ghana-imf-page .visual-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ghana-imf-page .ghana-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ghana-imf-page .ghana-image {
    width: 100%;
    height: auto;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(46, 204, 113, 0.3);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

#ghana-imf-page .ghana-image:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(1deg); 
    }
}

#ghana-imf-page .objectives-section {
    width: 100%;
    background: linear-gradient(135deg, #f5f6fa 0%, #e8eaf0 100%);
    padding: 60px 0;
    margin-top: -50px;
    margin-left: -20px;
    margin-right: -20px;
}

#ghana-imf-page .objectives-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#ghana-imf-page .objectives-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    box-shadow: 
        0 4px 15px rgba(46, 204, 113, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
    transform: translateX(-50%);
    position: relative;
    left: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

#ghana-imf-page .objectives-title:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 20px rgba(46, 204, 113, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.15);
}

#ghana-imf-page .objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

#ghana-imf-page .objective-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

#ghana-imf-page .objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

#ghana-imf-page .objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    border-radius: 0 0 4px 4px;
}

#ghana-imf-page .objective-card.stability::before { 
    background: #e74c3c; 
}

#ghana-imf-page .objective-card.sustainability::before { 
    background: #f39c12; 
}

#ghana-imf-page .objective-card.growth::before { 
    background: #2ecc71; 
}

#ghana-imf-page .objective-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

#ghana-imf-page .objective-description {
    color: #000000;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    #ghana-imf-page .hero-container {
        flex-direction: column;
        gap: 25px;
        padding: 25px 15px;
        text-align: center;
    }

    #ghana-imf-page .main-title {
        font-size: 2.2rem;
    }

    #ghana-imf-page .info-cards {
        justify-content: center;
    }

    #ghana-imf-page .ghana-image-container {
        width: 250px;
        height: 250px;
    }

    #ghana-imf-page .ghana-image {
        max-width: 220px;
    }

    #ghana-imf-page .objectives-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #ghana-imf-page .objectives-container {
        padding: 0 15px;
    }
}