/* 
   Harvest Community Hospital - Complete Stylesheet
   Mobile-first responsive design with donation functionality
   Author: Hospital Web Team
   Version: 2.0
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #007bb5;
    color: #fff;
}

.btn-primary:hover {
    background: #005a87;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 181, 0.3);
}

.btn-secondary {
    background: #4a4a4a;
    color: #fff;
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 74, 74, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Donate Button */
.btn-donate {
    background: #28a745;
    color: #fff;
}

.btn-donate:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
}

.logo-icon {
    font-size: 2.5rem;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #007bb5;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #007bb5;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #007bb5;
}

.nav-cta {
    margin-left: 20px;
    display: flex;
    gap: 10px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #007bb5 0%, #005a87 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #007bb5 0%, #005a87 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #007bb5;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: #f8f9fa;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #007bb5;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-details {
    margin-top: 15px;
    padding-left: 20px;
}

.service-details li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bb5;
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #007bb5;
    font-weight: 600;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Services Preview */
.services-preview-section {
    background-color: #fff;
}

/* ===== INFO SECTION ===== */
.info-section {
    background: linear-gradient(to right, #007bb5, #005a87);
    color: white;
}

.info-section .section-title {
    color: white;
}

.info-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.info-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-highlight h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.service-highlight ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.service-highlight li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-highlight li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4cd964;
    font-weight: bold;
}

/* ===== INSURANCE SECTION ===== */
.insurance-section {
    background-color: #fff;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.insurance-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.insurance-card:hover {
    transform: translateY(-10px);
}

.insurance-card i {
    font-size: 3rem;
    color: #007bb5;
    margin-bottom: 20px;
}

.insurance-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    background-color: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-image {
    background: #f8f9fa;
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 10rem;
    color: #007bb5;
    opacity: 0.2;
}

.values-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.value-item i {
    font-size: 1.5rem;
    color: #007bb5;
    margin-right: 15px;
    margin-top: 5px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

/* ===== NON-PROFIT SECTION ===== */
.nonprofit-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.nonprofit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.nonprofit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.nonprofit-card:hover {
    transform: translateY(-10px);
}

.nonprofit-card i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 20px;
}

.nonprofit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* ===== TEAM SECTION ===== */
.team-section {
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 250px;
    background: linear-gradient(to right, #007bb5, #005a87);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.team-role {
    color: #007bb5;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    margin-bottom: 15px;
    color: #666;
}

.team-contact span {
    display: inline-flex;
    align-items: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.team-contact i {
    margin-right: 5px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 1.2rem;
    color: #2c3e50;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #007bb5;
}

.faq.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
}

/* ===== APPOINTMENT FORM SECTION ===== */
.appointment-form-section {
    background-color: #fff;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.form-main {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bb5;
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-checkbox input {
    margin-right: 10px;
}

.form-submit {
    margin-top: 30px;
}

.form-note {
    margin-top: 20px;
    padding: 15px;
    background: #e8f4fc;
    border-radius: 5px;
    color: #0066cc;
    font-size: 0.9rem;
}

.form-note i {
    margin-right: 10px;
}

.form-sidebar {
    background: #007bb5;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.form-sidebar h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* ===== EXPECT SECTION ===== */
.expect-section {
    background-color: #f8f9fa;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.expect-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.expect-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #007bb5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.expect-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.2rem;
    color: #007bb5;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-item a {
    color: #007bb5;
    text-decoration: none;
}

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

.directions,
.emergency-hours {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.directions i,
.emergency-hours i {
    margin-right: 5px;
}

.social-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.social-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #007bb5;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background: #005a87;
    transform: translateY(-3px);
}

.contact-form {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-form > p {
    margin-bottom: 25px;
    color: #666;
}

/* ===== MAP SECTION ===== */
.map-section {
    background-color: #f8f9fa;
}

.map-container {
    margin-top: 30px;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(to right, #007bb5, #005a87);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.map-overlay h4 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.map-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.transport-info {
    margin-top: 60px;
}

.transport-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.transport-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.transport-card i {
    font-size: 2.5rem;
    color: #007bb5;
    margin-bottom: 20px;
}

.transport-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* ===== DEPARTMENTS SECTION ===== */
.departments-section {
    background-color: #fff;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.department-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.department-card:hover {
    transform: translateY(-10px);
}

.department-card i {
    font-size: 2.5rem;
    color: #007bb5;
    margin-bottom: 20px;
}

.department-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.department-card p {
    color: #666;
    margin-bottom: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #007bb5 0%, #005a87 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    margin-top: 15px;
    color: #bdc3c7;
}

.footer-donate {
    margin-top: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #007bb5;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #007bb5;
}

/* ===== FIXED CTA ===== */
.fixed-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.fixed-cta-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fixed-cta-container a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 200px;
}

.fixed-cta-container .btn-donate {
    background: #28a745;
}

.fixed-cta-container .btn-primary {
    background: #007bb5;
}

/* ===== DONATION PAGE STYLES ===== */
/* Donate Header */
.donate-header {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

/* Impact Section */
.impact-section {
    background-color: #f8f9fa;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
    line-height: 1;
}

.impact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Donation Form Section */
.donation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.donation-info {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.funding-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.funding-card i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 15px;
}

.funding-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #28a745;
}

.testimonial-content i {
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 10px;
}

.testimonial-author {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.donation-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.donation-form h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.donation-form > p {
    color: #666;
    margin-bottom: 25px;
}

.donation-amounts {
    margin-bottom: 30px;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.amount-option {
    padding: 15px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 5px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-option:hover {
    border-color: #28a745;
    color: #28a745;
}

.amount-option.active {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.custom-amount {
    margin-top: 20px;
}

.input-group {
    display: flex;
    margin-top: 10px;
}

.input-prefix {
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 5px 0 0 5px;
    color: #666;
}

.custom-amount input {
    border-radius: 0 5px 5px 0;
    flex: 1;
}

.donation-frequency {
    margin-bottom: 30px;
}

.frequency-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.frequency-option input {
    display: none;
}

.frequency-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.frequency-option label i {
    font-size: 2rem;
    color: #666;
    margin-bottom: 10px;
}

.frequency-option label span {
    font-weight: 600;
    color: #333;
}

.frequency-option label small {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.frequency-option input:checked + label {
    border-color: #28a745;
    background: #f8fff9;
}

.frequency-option input:checked + label i {
    color: #28a745;
}

.donor-info {
    margin-bottom: 30px;
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-options {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.payment-option {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #666;
}

.payment-option.active {
    border-color: #28a745;
    background: #f8fff9;
}

.payment-option.active i {
    color: #28a745;
}

.payment-details {
    display: none;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.payment-details.active {
    display: block;
}

.payment-details h5 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.payment-details ol {
    padding-left: 20px;
    margin-bottom: 0;
}

.payment-details li {
    margin-bottom: 10px;
}

.donation-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #28a745;
    font-size: 1.2rem;
}

.form-note {
    margin-top: 20px;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 5px;
    color: #0066cc;
    font-size: 0.9rem;
}

.form-note i {
    margin-right: 10px;
}

/* Other Ways Section */
.other-ways-section {
    background-color: #f8f9fa;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.way-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.way-card:hover {
    transform: translateY(-10px);
}

.way-card i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 20px;
}

.way-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Transparency Section */
.transparency-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.transparency-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.transparency-card i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 20px;
}

.transparency-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.transparency-link {
    display: inline-flex;
    align-items: center;
    color: #28a745;
    font-weight: 600;
    margin-top: 15px;
}

.transparency-link i {
    font-size: 0.9rem;
    margin-left: 5px;
}

/* Donation Modal */
.donation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: #28a745;
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header i {
    font-size: 2.5rem;
    margin-right: 15px;
}

.modal-header h3 {
    flex: 1;
    margin: 0;
    color: white;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 30px;
}

.donation-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

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

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.modal-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== PAYMENT METHODS TABS ===== */
.payment-methods-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.payment-tabs {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #eee;
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.tab-button.active {
    color: #28a745;
    background: white;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #28a745;
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Payment Instructions */
.instruction-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.instruction-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instruction-card h3 i {
    color: #28a745;
}

.instruction-card > p {
    color: #666;
    margin-bottom: 25px;
}

.steps {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.steps h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.steps li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.steps strong {
    color: #28a745;
}

.payment-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #e8f4fc;
    border-radius: 8px;
    color: #0066cc;
}

.payment-note i {
    font-size: 1.5rem;
    margin-top: 3px;
}

/* Bank Details Grid */
.bank-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.bank-detail-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bank-detail-card:hover {
    transform: translateY(-5px);
    border-color: #28a745;
}

.bank-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bank-header i {
    font-size: 2rem;
    color: #28a745;
}

.bank-header h4 {
    margin: 0;
    color: #2c3e50;
}

.bank-info {
    padding: 25px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8f9fa;
}

.info-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-row .label {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
}

.info-row .value {
    color: #2c3e50;
    text-align: right;
    flex: 1;
}

.info-row .value.highlight {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Bank Notes */
.bank-notes {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #28a745;
}

.note {
    display: flex;
    gap: 20px;
}

.note i {
    font-size: 1.5rem;
    color: #28a745;
    margin-top: 3px;
}

.note h5 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.note ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.note li {
    margin-bottom: 8px;
    color: #495057;
}

.note li:last-child {
    margin-bottom: 0;
}

.note a {
    color: #28a745;
    text-decoration: none;
}

.note a:hover {
    text-decoration: underline;
}

/* Copy Bank Details */
.copy-bank-details {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.copy-bank-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-bank-btn.copied {
    background: #28a745;
    color: white;
}

.copy-bank-btn.copied i {
    color: white;
}

/* Card Donation Form */
.card-donation-form {
    text-align: center;
    padding: 30px;
}

.card-donation-form p {
    margin-bottom: 25px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.card-logos {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.card-logos i {
    font-size: 3rem;
    color: #666;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.security-note i {
    font-size: 2.5rem;
    color: #28a745;
}

.security-note h5 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.security-note p {
    margin-bottom: 0;
    color: #666;
}

/* Post Donation Info */
.post-donation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
}

.info-card i {
    font-size: 2rem;
    color: #28a745;
    margin-top: 5px;
}

.info-card h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-card p {
    color: #666;
    margin-bottom: 0;
}

.info-card a {
    color: #28a745;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Quick Transfer Options */
.quick-transfer-options {
    margin-bottom: 30px;
}

.quick-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.quick-transfer-btn {
    padding: 12px 20px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 5px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 100px;
}

.quick-transfer-btn:hover {
    border-color: #28a745;
    color: #28a745;
}

.currency-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.currency-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Print Styles for Bank Details */
@media print {
    .tab-button,
    .tab-button:not(.active),
    .payment-tabs {
        display: none;
    }
    
    .tab-pane.active {
        display: block;
        page-break-inside: avoid;
    }
    
    .bank-detail-card {
        page-break-inside: avoid;
        border: 2px solid #000;
    }
    
    .copy-bank-details,
    .btn,
    .fixed-cta {
        display: none;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .mission-grid,
    .form-container,
    .contact-container,
    .donation-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .frequency-options {
        grid-template-columns: 1fr;
    }
    
    .fixed-cta-container {
        flex-direction: row;
    }
    
    .fixed-cta-container a {
        width: auto;
        padding: 15px;
    }
    
    .fixed-cta-container span {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-cta {
        margin: 15px 0 0;
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .fixed-cta span {
        display: none;
    }
    
    .fixed-cta a {
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .fixed-cta i {
        margin-right: 0;
        font-size: 1.5rem;
    }
    
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-options {
        flex-direction: column;
    }
    
    .fixed-cta-container {
        flex-direction: column;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        padding: 15px;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .bank-details-grid {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .info-row .label,
    .info-row .value {
        text-align: left;
        width: 100%;
    }
    
    .copy-bank-details {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .fixed-cta-container a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
    }
    
    .fixed-cta-container i {
        margin-right: 0;
        font-size: 1.5rem;
    }
    
    .amount-options {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .instruction-card {
        padding: 20px;
    }
    
    .post-donation-info {
        grid-template-columns: 1fr;
    }
    
    .card-logos {
        gap: 15px;
    }
    
    .card-logos i {
        font-size: 2rem;
    }
}

/* ===== SIMPLE DONATION PAGE STYLES ===== */

.simple-donation-section {
    background-color: #f8f9fa;
}

.donation-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.donation-method-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.method-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.donation-method-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.donation-method-card > p {
    color: #666;
    margin-bottom: 30px;
}

.payment-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

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

.detail-item .label {
    font-weight: 600;
    color: #495057;
    min-width: 140px;
}

.detail-item .value {
    color: #2c3e50;
    text-align: right;
    flex: 1;
}

.detail-item .value.highlight {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

.account-type {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.account-type h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #495057;
}

.payment-steps {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #28a745;
}

.payment-steps h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.payment-steps ol {
    padding-left: 20px;
    margin-bottom: 0;
}

.payment-steps li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.payment-steps strong {
    color: #28a745;
}

.bank-notes {
    background: #e8f4fc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.bank-notes h5 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.bank-notes ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.bank-notes li {
    margin-bottom: 8px;
    color: #495057;
}

.bank-notes li:last-child {
    margin-bottom: 0;
}

.bank-notes a {
    color: #28a745;
    text-decoration: none;
}

.bank-notes a:hover {
    text-decoration: underline;
}

.copy-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

.copy-details-btn.copied {
    background: #28a745;
    color: white;
}

.copy-details-btn.copied i {
    color: white;
}

.copy-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.copy-buttons .copy-details-btn {
    flex: 1;
    min-width: 150px;
}

/* Donation Instructions */
.donation-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.instruction-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
}

.instruction-card i {
    font-size: 2rem;
    color: #28a745;
    margin-top: 5px;
}

.instruction-card h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.instruction-card p {
    color: #666;
    margin-bottom: 0;
}

.instruction-card a {
    color: #28a745;
    text-decoration: none;
}

.instruction-card a:hover {
    text-decoration: underline;
}

/* Funding Section */
.funding-section {
    background-color: #fff;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.funding-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.funding-card i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 15px;
}

.funding-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 4px solid #28a745;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-content i {
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 10px;
}

.testimonial-author {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Styles for Simple Donation */
@media (max-width: 768px) {
    .donation-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-item .label,
    .detail-item .value {
        text-align: left;
        width: 100%;
    }
    
    .copy-buttons {
        flex-direction: column;
    }
    
    .copy-buttons .copy-details-btn {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .donation-method-card {
        padding: 25px;
    }
    
    .payment-details {
        padding: 20px;
    }
    
    .donation-instructions {
        grid-template-columns: 1fr;
    }
}

/* ===== SIDE-BY-SIDE PAYMENT METHODS ===== */

.payment-methods-side-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.side-by-side-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.payment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.payment-card-header {
    padding: 30px;
    color: white;
    text-align: center;
}

.mpesa-header {
    background: linear-gradient(135deg, #00A859 0%, #008A4C 100%);
}

.bank-header {
    background: linear-gradient(135deg, #007bb5 0%, #005a87 100%);
}

.payment-card-header i {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.payment-card-header h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: white;
}

.card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.payment-details-box {
    padding: 30px;
}

.payment-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

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

.info-label {
    font-weight: 600;
    color: #495057;
    flex: 1;
}

.info-value {
    color: #2c3e50;
    font-weight: 500;
    text-align: right;
    flex: 1;
}

.info-value.highlight {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

.instructions {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin-bottom: 25px;
}

.instructions h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.steps-list li {
    margin-bottom: 12px;
    padding-left: 10px;
    line-height: 1.5;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.steps-list strong {
    color: #28a745;
}

.account-options {
    margin-bottom: 25px;
}

.account-option {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.account-option:last-child {
    margin-bottom: 0;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.account-header i {
    font-size: 1.8rem;
    color: #007bb5;
}

.account-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.account-details {
    padding-left: 40px;
}

.bank-notes {
    background: #e8f4fc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.bank-notes h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.bank-notes ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.bank-notes li {
    margin-bottom: 8px;
    color: #495057;
}

.bank-notes li:last-child {
    margin-bottom: 0;
}

.bank-notes a {
    color: #007bb5;
    text-decoration: none;
    font-weight: 500;
}

.bank-notes a:hover {
    text-decoration: underline;
}

.copy-section {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: 180px;
}

.copy-btn.copied {
    background: #28a745;
    color: white;
}

.copy-btn.copied i {
    color: white;
}

/* Important Information Section */
.important-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.info-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-top: 5px;
}

.info-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.info-content a {
    color: #007bb5;
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Funding Section */
.funding-section {
    background-color: #fff;
    padding: 80px 0;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.funding-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.funding-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.funding-card i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.funding-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.funding-card p {
    color: #666;
    margin-bottom: 0;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #007bb5 0%, #005a87 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .side-by-side-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .funding-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .info-cards-container {
        grid-template-columns: 1fr;
    }
    
    .funding-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-label,
    .info-value {
        width: 100%;
        text-align: left;
    }
    
    .copy-section {
        flex-direction: column;
    }
    
    .copy-btn {
        width: 100%;
    }
    
    .account-details {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .payment-card-header {
        padding: 20px;
    }
    
    .payment-card-header h3 {
        font-size: 1.5rem;
    }
    
    .payment-details-box {
        padding: 20px;
    }
    
    .payment-info {
        padding: 20px;
    }
    
    .instructions {
        padding: 20px;
    }
    
    .info-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 1.2rem;
    }
}