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

.header {
    background-color: #fff;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-container {
    max-width: 300px;
    margin: 0 auto;
}

.logo {
    width: 100%;
    height: auto;
}

.main-content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.page-title {
    text-align: center;
    color: #004d99;
    font-weight: 700;
    margin-bottom: 5px;
}

.tagline {
    text-align: center;
    color: #666;
    margin-top: 0;
    font-style: italic;
}

.cctv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.cctv-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.cctv-item iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.cctv-label {
    text-align: center;
    padding-top: 10px;
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
}

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

/* Responsivitas untuk layar yang lebih kecil */
@media (max-width: 768px) {
    .cctv-grid {
        grid-template-columns: 1fr;
    }
}