body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(to right, #f8ffae, #43c6ac);
    color: #333;
}

/* Header */
header {
    text-align: center;
    background: rgba(0, 64, 128, 0.9);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.logo {
    width: 80px;
}

.tagline {
    font-size: 1.2em;
    color: #ffeb3b;
}

/* Social Buttons */
.social-links {
    text-align: center;
    margin: 15px 0;
}

.btn {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.youtube {
    background: #ff0000;
}

.instagram {
    background: #e1306c;
}

.facebook {
    background: #1877f2;
}

.btn:hover {
    opacity: 0.8;
}

/* Navigation */
nav {
    background: #222;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

nav ul li a:hover {
    color: #ffeb3b;
}

/* News Section */
.news {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.news h2 {
    text-align: center;
    margin-bottom: 20px;
}

.news-item {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.news-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.news-item h3 {
    margin: 10px 0;
    color: #004080;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #004080;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    color: #ff5722;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: rgba(0, 64, 128, 0.9);
    color: white;
    margin-top: 20px;
}
