body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    background-color: #1e88e5;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}
header::before {
    content: "🦅";
    font-size: 3rem;
    position: absolute;
    top: 10px;
    left: 10px;
}
header::after {
    content: "🦉";
    font-size: 3rem;
    position: absolute;
    top: 10px;
    right: 10px;
}
nav {
    background-color: #0d47a1;
    color: #fff;
    padding: 0.5rem;
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 1rem;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #64b5f6;
}
main {
    flex: 1;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
}
h1, h2 {
    color: #1e88e5;
}
.cta-button {
    display: inline-block;
    background-color: #ffa000;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #ff6f00;
}
footer {
    background-color: #1e88e5;
    color: #fff;
    text-align: center;
    padding: 1rem;
    width: 100%;
}
.bird-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-top: 2rem;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}