:root {
    --primary-color: #4CAF50;
    --secondary-color: #FF9800;
    --background-color: #F4F4F4;
    --text-color: #333;
}

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

body {
    font-family: 'Courier', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
}

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

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: rgba(76, 175, 80, 0.1);
}

.hero h1 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #F57C00;
}

section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.species-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sci-fi-kangaroo {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    transition: transform 0.3s ease;
}

.sci-fi-kangaroo:hover {
    transform: scale(1.05);
}

.species-card {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.species-card:hover {
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    transform: translateY(-10px);
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, 
.contact textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}