body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

.sticky-nav {
    position: sticky;
    top: 0;
    background: linear-gradient(to right, #87CEEB, #FFC0CB);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

ul {
    list-style: none;
    display: flex;
    margin: 0;
}

li {
    margin-left: 1rem;
}

a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #333;
}

.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta {
    background: #FFC0CB;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin: 0.5rem;
    display: inline-block;
}

.overview, .about-section, .donate-section, .elephants-section, .best-days-section, .enrichment-section, .scholarships-section, .connect-section, .contact-section {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

.program-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.program-card, .team-member {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
    transition: transform 0.3s;
}

.program-card:hover, .team-member:hover {
    transform: scale(1.05);
}

.social-embeds > div {
    margin-bottom: 2rem;
}

form {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: auto;
}

input, textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #87CEEB;
    color: white;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #FFC0CB;
}

footer {
    background: linear-gradient(to right, #87CEEB, #FFC0CB);
    color: white;
    text-align: center;
    padding: 1rem;
}

footer ul {
    justify-content: center;
}

@media (max-width: 768px) {
    .sticky-nav {
        flex-direction: column;
    }
    ul {
        flex-direction: column;
        align-items: center;
    }
    li {
        margin: 0.5rem 0;
    }
}