/* styles/schemes.css */

/* Hero Section */
.scheme-hero {
    background: linear-gradient(135deg, #0d652d 0%, #137333 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.scheme-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.scheme-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section {
    padding: 4rem 0;
    text-align: center;
    background: #f8f9fa;
}

.obj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.obj-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-top: 4px solid #34a853;
}

/* Accordion Styles */
.schemes-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
}

.scheme-item {
    background: white;
    border: 1px solid #dadce0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.scheme-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.scheme-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
}

.scheme-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scheme-number {
    font-size: 0.9rem;
    color: #137333;
    background: #e6f4ea;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.scheme-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #202124;
    margin: 0;
}

.toggle-icon {
    color: #5f6368;
    transition: transform 0.3s;
}

.scheme-item.active .toggle-icon {
    transform: rotate(180deg);
}

.scheme-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fff;
}

.scheme-item.active .scheme-content {
    border-top: 1px solid #f1f3f4;
}

.content-inner {
    padding: 1.5rem;
}

.beneficiary-tag {
    display: inline-block;
    background: #feefe3;
    color: #e37400;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #3c4043;
}

.feature-list li::before {
    content: 'check_circle';
    font-family: 'Material Icons Round';
    position: absolute;
    left: 0;
    color: #34a853;
    font-size: 1.1rem;
}

.scheme-outcome {
    background: #f1f3f4;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #202124;
}

/* Impact Section */
.impact-section {
    background: #202124;
    color: white;
    padding: 4rem 0;
    text-align: center;
}