.hero-section {
    padding: 60px 0;
}

.section-tag {
    color: #62146c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 32px;
}

.campaign-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.campaign-list li {
    padding: 12px 0;
    color: #495057;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.campaign-list li:before {
    content: "✓";
    color: #62146c;
    font-weight: bold;
    margin-right: 12px;
    font-size: 20px;
}

.campaign-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px #62146c;
    border-color: #62146c;
}

.campaign-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #62146c 0%, #4b0096 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.campaign-body {
    padding: 24px;
}

.campaign-category {
    display: inline-block;
    background: #f0e6ff;
    color: #62146c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.campaign-title {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
    line-height: 1.4;
}

.campaign-description {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.campaign-organizer {
    font-size: 13px;
    color: #495057;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.organizer-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #62146c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.progress {
    height: 8px;
    border-radius: 10px;
    margin-bottom: 12px;
    background-color: #e9ecef;
}

.progress-bar {
    background: linear-gradient(90deg, #62146c 0%, #9d4edd 100%);
    border-radius: 10px;
}

.campaign-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #6c757d;
}

.btn-donate {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    background: #62146c;
    color: white;
    transition: all 0.3s ease;
}

.btn-donate:hover {
    background: #62146c;
    transform: translateY(-2px);
}

.urgent-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-section {
        padding: 40px 30px;
    }
}