* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fefaf5;
    color: #1e2a2f;
    line-height: 1.6;
}

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

/* Header */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: #c4450c;
}

.logo p {
    font-size: 0.8rem;
    color: #666;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e40;
    font-weight: 600;
}

.nav-links a:hover {
    color: #c4450c;
}

.btn-donate-nav {
    background: #c4450c;
    color: white !important;
    padding: 8px 20px;
    border-radius: 30px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5e8, #ffe6d5);
}

.hero-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    background: #c4450c;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #1e3a3a;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5e5e;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #c4450c;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #a33707;
}

.btn-outline {
    background: transparent;
    border: 2px solid #c4450c;
    color: #c4450c;
    padding: 10px 26px;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

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

.btn-green {
    background: #2b7a4b;
}

.btn-green:hover {
    background: #1e5f38;
}

/* Stats Box */
.hero-stats {
    flex: 0.7;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stat-item {
    margin-bottom: 20px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #c4450c;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1e3a3a;
}

.section-sub {
    color: #5a7474;
    margin-bottom: 40px;
}

/* Values Grid */
.values-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.value-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    flex: 1;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #f0e0d0;
}

.value-card h4 {
    color: #c4450c;
    font-size: 1.3rem;
}

/* Programs Grid */
.programs-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.program-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #c4450c;
}

.program-card h3 {
    color: #1e3a3a;
    margin-bottom: 15px;
}

.program-card ul {
    padding-left: 20px;
    color: #4a6060;
}

.program-card li {
    margin: 8px 0;
}

/* Serve Grid */
.serve-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.serve-card {
    background: #fff5ed;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    min-width: 180px;
    text-align: center;
    font-weight: 600;
}

/* Impact Stats */
.impact-stats {
    background: #c4450c10;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.impact-item {
    text-align: center;
    flex: 1;
}

.impact-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #c4450c;
}

/* Involve Grid */
.involve-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.involve-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #ffe0ce;
}

.involve-card h3 {
    margin: 10px 0;
    color: #c4450c;
}

/* Callout */
.callout {
    background: #fadfcf;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.callout p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #1e2a2f;
    color: #c9d8d5;
    padding: 50px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

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

.footer-col a {
    color: #c9d8d5;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #3d5555;
}

/* Forms */
.donate-form, .sponsor-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

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

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #c4450c;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}

.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.error-msg {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.data-table th, .data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    background: #c4450c;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        gap: 15px;
    }
    .hero-content h2 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
}