
body {
    background-image: url('images/BG.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}
header {
    background-color: rgba(15, 4, 168, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(2px);
}
main {
    background: transparent;
    padding: 20px;
    flex: 1;
}
section {
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.company-profile h2 {
    text-align: center;
}
.company-profile p {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}
#news-section {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#beritaContent {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
button {
    background-color: #0f04a8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #3c36d4;
}
form {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
input[type="text"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
iframe {
    max-width: 90%;
    height: 360px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
footer {
    background-color: rgba(38, 3, 176, 0.9);
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(2px);
}
