body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

.hero {
    background: linear-gradient(135deg, lightblue, blue);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.hero .logo {
    width: 120px;
    height: auto;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 20px 0;
}

.hero p {
    font-size: 1.2rem;
    margin: 10px 0;
    line-height: 1.6;
}

.section {
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 900px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: blue;
}

.section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section a {
    color: lightblue;
    text-decoration: none;
    font-weight: bold;
}

.section a:hover {
    text-decoration: underline;
}

.book-image img, .tv-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    color: #a020f0;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

header {
    position: sticky;
    top: 0;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    font-weight: bold;
}

header nav a:hover {
    color: lightblue;
}
