/* Contribute Page Styles */

/* Ways to Contribute Section */
.ways-to-contribute {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .ways-to-contribute {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contribute-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px var(--card-shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.card-header-green {
    background-color: var(--green-accent);
}

.card-header-yellow {
    background-color: var(--accent-color);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.3rem;
    margin: 0;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-description {
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.card-steps {
    margin: 0;
    padding-left: 20px;
}

.card-steps li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    opacity: 0.9;
}

.cta-button-green {
    background-color: var(--green-accent);
}

.cta-button-yellow {
    background-color: var(--accent-color);
}

/* Contribute Note */
.contribute-note {
    background-color: #E8F0FE;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

/* Guidelines Section */
.guidelines-section {
    background-color: #E8F0FE;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.guidelines-section h2 {
    color: var(--primary-color);
    margin-top: 0;
    text-align: center;
    margin-bottom: 20px;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .guidelines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.guideline-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.guideline-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: bold;
}

.guideline-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.guideline-content {
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    cursor: pointer;
}

.faq-answer {
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Contact Section */
.contact-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.contact-section h2 {
    color: var(--primary-color);
    margin-top: 0;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #E8F0FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-label {
    font-weight: bold;
    color: var(--primary-color);
}

.contact-value {
    color: var(--text-muted);
}

.contact-value a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

/* Privacy Notice */
.privacy-notice {
    background-color: #FFF8E1;
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #555;
    border-left: 4px solid var(--accent-color);
}

.privacy-notice h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.1rem;
}

.privacy-notice p {
    margin: 10px 0;
    line-height: 1.5;
}

/* Animations */
.contribute-card {
    animation: fadeIn 0.5s ease-out;
}

.guideline-card {
    animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 