/* MCELLIGOTT Foundation Website Styles */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    color: white;
    border-color: #5a7c6b;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4a6b5a, #3a5a49);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 124, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #5a7c6b;
    border-color: #5a7c6b;
}

.btn-secondary:hover {
    background: #5a7c6b;
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: #5a7c6b;
    border-color: white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #5a7c6b;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a7c6b;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

.nav-link:hover,
.nav-link.active {
    color: #5a7c6b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5a7c6b;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.donate-btn {
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.donate-btn:hover {
    background: linear-gradient(135deg, #4a6b5a, #3a5a49);
    transform: translateY(-2px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f4f6f5 0%, #e1e8e4 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5a7c6b;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 20px;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5a7c6b;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Core Pillars Section */
.pillars {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.pillar-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fffe;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #5a7c6b;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.pillar-icon i {
    font-size: 2rem;
    color: white;
}

.pillar-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: #666;
    line-height: 1.7;
}

/* Housing Solutions Preview */
.housing-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.housing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.housing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.housing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.housing-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.housing-card h4 {
    padding: 1.5rem;
    font-size: 1.2rem;
    color: #1a1a1a;
    text-align: center;
}

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

/* Call to Action */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #5a7c6b;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5a7c6b;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #5a7c6b;
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #5a7c6b;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: #5a7c6b;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #5a7c6b;
}

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

/* Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    color: white;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.donate-header {
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a, #32CD32);
}

/* About Page Styles */
.about-intro {
    padding: 100px 0;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vm-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.vm-icon i {
    font-size: 2rem;
    color: white;
}

.vm-card h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.vm-card p {
    line-height: 1.7;
}

.pillars-detailed {
    padding: 100px 0;
    background: white;
}

.pillars-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pillar-detailed {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: #f8fffe;
    border-radius: 15px;
    border-left: 5px solid #5a7c6b;
}

.pillar-number {
    font-size: 3rem;
    font-weight: 700;
    color: #5a7c6b;
    text-align: center;
}

.pillar-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pillar-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pillar-content ul {
    list-style: none;
    padding: 0;
}

.pillar-content ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.pillar-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5a7c6b;
    font-weight: bold;
}

.objectives {
    padding: 100px 0;
    background: white;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.objective-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.objective-card:hover {
    transform: translateY(-5px);
    border-color: #5a7c6b;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.objective-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.objective-icon i {
    font-size: 1.5rem;
    color: white;
}

.objective-card h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.bhag {
    padding: 100px 0;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    color: white;
    text-align: center;
}

.bhag-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.bhag-text {
    max-width: 800px;
    margin: 0 auto;
}

.bhag-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.why-choose {
    padding: 100px 0;
    background: white;
}

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

.why-item {
    text-align: center;
    padding: 2rem 1rem;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 1.5rem;
    color: white;
}

.why-item h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-form {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.25rem;
}

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fffe;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #5a7c6b;
    color: white;
    transform: translateX(10px);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #5a7c6b;
    border-color: #5a7c6b;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: #5a7c6b;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #5a7c6b;
}

.faq-item h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-item p {
    line-height: 1.6;
}

/* Donation Page Styles */
.donation-impact {
    padding: 100px 0;
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.impact-card.featured {
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    color: white;
    transform: scale(1.05);
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: #5a7c6b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.impact-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.impact-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5a7c6b;
    margin-bottom: 1rem;
}

.impact-card.featured .impact-amount {
    color: white;
}

.impact-card h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.impact-card.featured h4 {
    color: white;
}

.impact-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.impact-card ul li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #666;
}

.impact-card.featured ul li {
    color: rgba(255, 255, 255, 0.9);
}

.donation-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.donation-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.donation-form h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.donation-form > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.donation-type,
.donation-amount,
.donation-designation,
.donor-info,
.donation-options,
.payment-method {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.donation-type h3,
.donation-amount h3,
.donation-designation h3,
.donor-info h3,
.payment-method h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-container input[type="radio"] {
    display: none;
}

.radio-checkmark {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-container input[type="radio"]:checked + .radio-checkmark {
    border-color: #5a7c6b;
}

.radio-container input[type="radio"]:checked + .radio-checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #5a7c6b;
    border-radius: 50%;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid #ddd;
    background: white;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: #5a7c6b;
    background: #5a7c6b;
    color: white;
}

.custom-amount {
    max-width: 300px;
}

.amount-input {
    position: relative;
    margin-top: 0.5rem;
}

.currency {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-weight: 600;
}

.amount-input input {
    padding-left: 30px;
}

.donation-options {
    border-bottom: none;
}

.tribute-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fffe;
    border-radius: 10px;
}

.payment-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-btn {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ddd;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-btn:hover,
.payment-btn.active {
    border-color: #5a7c6b;
    background: #f8fffe;
}

.payment-btn i {
    font-size: 1.5rem;
    color: #5a7c6b;
}

.donation-summary {
    background: #f8fffe;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-line.total {
    font-weight: 600;
    font-size: 1.1rem;
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

.donation-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.security-notice {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.security-notice i {
    color: #5a7c6b;
    margin-right: 0.5rem;
}

.other-ways {
    padding: 100px 0;
    background: white;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.way-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.way-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.way-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.way-icon i {
    font-size: 2rem;
    color: white;
}

.way-card h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.way-card p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    background: #5a7c6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #4a6b5a;
    transform: translateY(-3px);
}

/* Future Goals Section */
.future-goals {
    padding: 100px 0;
    background: white;
}

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

.goal-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.goal-card:hover {
    transform: translateY(-10px);
    border-color: #5a7c6b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.goal-progress {
    margin-bottom: 2rem;
}

.progress-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#5a7c6b 0deg, #5a7c6b var(--progress, 65deg), #e0e0e0 var(--progress, 65deg));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.progress-circle::before {
    content: '';
    width: 80px;
    height: 80px;
    background: #f8fffe;
    border-radius: 50%;
    position: absolute;
}

.progress-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a7c6b;
    position: relative;
    z-index: 1;
}

.goal-card h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.goal-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.goal-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-tag {
    background: #5a7c6b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Impact CTA */
.impact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    color: white;
    text-align: center;
}

.impact-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.impact-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.impact-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Logo adjustments */
.logo {
    height: 40px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        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: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .housing-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Housing Page Styles */
.housing-overview {
    padding: 100px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.overview-stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8fffe;
    border-radius: 10px;
}

.overview-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #5a7c6b;
    margin-bottom: 0.5rem;
}

.overview-stat p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.housing-types {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.housing-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.housing-type-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.housing-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.housing-type-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.housing-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.housing-type-card:hover .housing-type-image img {
    transform: scale(1.05);
}

.housing-type-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.housing-type-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.housing-type-overlay p {
    margin: 0;
    opacity: 0.9;
}

.housing-type-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.housing-type-features h4,
.housing-type-benefits h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.housing-type-features ul,
.housing-type-benefits ul {
    list-style: none;
    padding: 0;
}

.housing-type-features ul li,
.housing-type-benefits ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.housing-type-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5a7c6b;
    font-weight: bold;
}

.housing-type-benefits ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #5a7c6b;
    font-size: 0.7rem;
    top: 0.6rem;
}

.sustainability-features {
    padding: 100px 0;
    background: white;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sustainability-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sustainability-card:hover {
    transform: translateY(-5px);
    border-color: #5a7c6b;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sustainability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.sustainability-icon i {
    font-size: 2rem;
    color: white;
}

.sustainability-card h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.sustainability-card p {
    line-height: 1.6;
    color: #666;
}

.housing-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: center;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.process-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-content h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.housing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    color: white;
    text-align: center;
}

.housing-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.housing-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.housing-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Programs Page Styles */
.programs-overview {
    padding: 100px 0;
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.program-card {
    background: #f8fffe;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: #5a7c6b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-header {
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    color: white;
    padding: 2rem;
    text-align: center;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-header h3 {
    margin-bottom: 0.5rem;
}

.program-header p {
    margin: 0;
    opacity: 0.9;
}

.program-content {
    padding: 2rem;
}

.program-features {
    margin-bottom: 2rem;
}

.program-features h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.program-features ul {
    list-style: none;
    padding: 0;
}

.program-features ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #666;
}

.program-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5a7c6b;
    font-weight: bold;
}

.program-impact {
    background: rgba(46, 139, 87, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.program-impact h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.impact-stat h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a7c6b;
    margin-bottom: 0.25rem;
}

.impact-stat p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

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

/* Responsive Design for Housing and Programs */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .housing-types-grid {
        grid-template-columns: 1fr;
    }
    
    .housing-type-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sustainability-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .housing-types-grid {
        grid-template-columns: 1fr;
    }
    
    .housing-type-content {
        padding: 1.5rem;
    }
    
    .process-timeline {
        gap: 2rem;
    }
    
    .process-content {
        padding: 1.5rem;
    }
}

/* Programs Page Partnerships and Involvement Styles */
.programs-grid-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.program-partnerships {
    padding: 100px 0;
    background: white;
}

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

.partnership-category {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #5a7c6b;
}

.partnership-category h4 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.partnership-category ul {
    list-style: none;
    padding: 0;
}

.partnership-category ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.partnership-category ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #5a7c6b;
    font-size: 0.8rem;
}

.get-involved {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.involvement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.involvement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.involvement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.involvement-icon i {
    font-size: 2rem;
    color: white;
}

.involvement-card h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.involvement-card p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Impact Page Styles */
.impact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #5a7c6b, #4a6b5a);
    color: white;
    text-align: center;
}

.impact-stats-section {
    padding: 100px 0;
    background: white;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-stat-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.impact-stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5a7c6b;
    margin-bottom: 0.5rem;
}

.impact-stat-card h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.impact-stat-card p {
    color: #666;
    font-size: 0.9rem;
}

.impact-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-category {
    background: #5a7c6b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.story-content h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-location {
    color: #5a7c6b;
    font-weight: 500;
    font-size: 0.9rem;
}

.impact-timeline {
    padding: 100px 0;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #5a7c6b;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: #5a7c6b;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
    box-shadow: 0 0 0 4px #e0e0e0;
}

.timeline-content {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    margin: 0 2rem;
}

.timeline-year {
    color: #5a7c6b;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Programs and Impact */
@media (max-width: 768px) {
    .partnerships-grid {
        grid-template-columns: 1fr;
    }
    
    .involvement-options {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 40px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        margin: 0 0 0 40px;
    }
}

@media (max-width: 480px) {
    .impact-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .involvement-options {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border-color: #000;
        color: #fff;
    }
    
    .btn-secondary {
        background: #fff;
        border-color: #000;
        color: #000;
    }
    
    .nav-link {
        color: #000;
    }
    
    .section-title {
        color: #000;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }
    
    .header {
        background: rgba(0, 0, 0, 0.95);
    }
    
    .nav-link {
        color: #e0e0e0;
    }
    
    .footer {
        background: #000;
    }
    
    .form-control {
        background: #333;
        border-color: #555;
        color: #e0e0e0;
    }
    
    .pillar-card,
    .housing-card,
    .program-card {
        background: #2a2a2a;
        border-color: #444;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta,
    .hero-buttons,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .section-title {
        font-size: 18pt;
    }
}
