.fundraising-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.fundraising-header {
    text-align: center;
    margin-bottom: 30px;
}

.fundraising-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.intro-section, .ideas-section, .form-section, .policy-section {
    margin-bottom: 40px;
}

.intro-section p, .ideas-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

.ideas-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ideas-list {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.ideas-list ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

.ideas-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.ideas-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.fundraising-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #45a049;
}

.policy-section {
    font-size: 14px;
    color: #555;
}

.policy-section ul {
    list-style-type: none;
    padding-left: 0;
    margin: 15px 0;
}

.policy-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.policy-section li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #4CAF50;
}

@media (max-width: 600px) {
    .fundraising-container {
        padding: 20px;
    }
    
    .fundraising-title {
        font-size: 28px;
    }
    
    .ideas-section h2 {
        font-size: 20px;
    }
}