/* Styling for the entire website */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 80%;
    margin: auto;
}

/* Navbar */
header {
    background-color: #00796b;
    color: white;
    padding: 20px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1500x600') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3em;
}

.hero p {
    font-size: 1.5em;
}

.hero .btn {
    background-color: #00796b;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Grafik Kesehatan Section */
.grafik {
    background-color: white;
    text-align: center;
    padding: 40px 0;
}

.program, .testimoni, .berita {
    background-color: #e0f2f1;
    padding: 40px 0;
}

.program-cards, .testimoni-slider, .berita-list {
    display: flex;
    justify-content: space-between;
}

.program-card, .testimonial, .berita-item {
    background-color: #00796b;
    color: white;
    padding: 20px;
    width: 30%;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #00796b;
    color: white;
    padding: 20px 0;
    text-align: center;
}
