/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f8ff;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    text-align: center;
    padding: 50px 20px; /* more space at top and bottom */
    background-color: #00aaff;
}

header img.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: block;
    margin: 0 auto 20px auto; /* space below logo */
}

header h1 {
    font-family: 'Fredoka One', sans-serif;
    color: white;
    margin: 15px 0 5px 0;
    font-size: 2.5em;
}

header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    color: white;
    margin: 10px 0 0 0;
}

/* Navigation */
nav {
    background-color: #0077cc;
    padding: 15px 20px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

/* Sections */
section {
    padding: 50px 20px; /* more spacing around sections */
    max-width: 900px;
    margin: 0 auto;
}

section h2 {
    color: #00aaff;
    margin-bottom: 20px;
}

/* Call to Action */
.cta {
    background-color: #00aaff;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
    font-size: 1.3em;
    border-radius: 8px;
}

.cta a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px 20px;
    background-color: #0077cc;
    color: white;
}

/* Responsive for phones and tablets */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    header img.logo {
        width: 150px;
        height: 150px;
    }
    nav a {
        display: block;
        margin: 10px 0;
    }
    section {
        padding: 30px 15px;
    }
    .cta {
        padding: 20px 15px;
    }
}
