    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
    }
    
    /* Navigation */
    nav {
        background-color: #004080;
        padding: 1rem;
        position: fixed;
        width: 100%;
        z-index: 100;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .logo {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
    }
    
    .nav-links {
        display: flex;
    }
    
    .nav-links a {
        color: white;
        text-decoration: none;
        margin-left: 1.5rem;
        transition: color 0.3s;
    }
    
    .nav-links a:hover {
        color: #ff6600;
    }
    
    /* Hero Section */
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://placeholder.com/1600x800');
        background-size: cover;
        background-position: center;
        height: 100vh;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
        padding-top: 60px;
    }
    
    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        display: inline-block;
        background-color: #ff6600;
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    
    .cta-button:hover {
        background-color: #e55c00;
    }
    
    /* Section Styling */
    section {
        padding: 5rem 2rem;
    }
    
    .section-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 3rem;
        color: #004080;
    }
    
    .section-title h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-title p {
        color: #666;
    }
    
    /* Approach Section */
    .approach-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .approach-item {
        background-color: #f5f5f5;
        padding: 2rem;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .approach-item h3 {
        color: #004080;
        margin-bottom: 1rem;
    }
    
    /* Services Section */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        background-color: white;
        padding: 2rem;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .service-card h3 {
        color: #004080;
        margin: 1rem 0;
    }
    
    .service-icon {
        font-size: 2.5rem;
        color: #ff6600;
    }
    
    /* Impact Stories */
    .stories-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .story-card {
        background-color: #f5f5f5;
        padding: 2rem;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .story-card h3 {
        color: #004080;
        margin-bottom: 1rem;
    }
    
    .story-quote {
        font-style: italic;
        margin: 1rem 0;
        color: #666;
    }
    
    .story-author {
        font-weight: bold;
    }
    
    /* About Section */
    .about-content {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        align-items: center;
    }
    
    .about-image {
        flex: 1;
        min-width: 300px;
    }
    
    .about-image img {
        width: 100%;
        border-radius: 5px;
    }
    
    .about-text {
        flex: 2;
        min-width: 300px;
    }
    
    /* Stewardship Section */
    .stewardship-content {
        background-color: #f5f5f5;
        padding: 2rem;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    /* Contact Section */
    .contact-container {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .contact-info {
        flex: 1;
        min-width: 300px;
    }
    
    .contact-form {
        flex: 2;
        min-width: 300px;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: bold;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    
    .form-group textarea {
        height: 150px;
    }
    
    .submit-button {
        background-color: #004080;
        color: white;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    
    .submit-button:hover {
        background-color: #002e5d;
    }
    
    /* Footer */
    footer {
        background-color: #004080;
        color: white;
        padding: 2rem;
        text-align: center;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-links {
        margin: 1rem 0;
    }
    
    .footer-links a {
        color: white;
        margin: 0 1rem;
        text-decoration: none;
    }
    
    .footer-links a:hover {
        text-decoration: underline;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
        
        .hero h1 {
            font-size: 2rem;
        }
        
        .hero p {
            font-size: 1rem;
        }
        
        section {
            padding: 3rem 1rem;
        }
    }
</style>
