/* Gaya Dasar Halaman */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #34495e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* Kontainer Utama */
.welcome-container {
    width: 100%;
    max-width: 960px;
    text-align: center;
}

/* Header Selamat Datang */
.welcome-header {
    margin-bottom: 40px;
}

.main-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.welcome-header h1 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 600;
    color: #002D62; /* Diubah ke Navy */
}

.welcome-header p {
    margin: 0;
    font-size: 16px;
    color: #7f8c8d;
}

/* Grid untuk Kartu Aksi */
.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Gaya Masing-Masing Kartu */
.card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #002D62; /* Diubah ke Navy */
}

.card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Gaya Tombol */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: #002D62; /* Diubah ke Navy */
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #00428d; /* Diubah ke Navy lebih terang */
}

.btn-secondary {
    background-color: #e6f0ff; /* Diubah ke biru muda serasi */
    color: #002D62; /* Diubah ke Navy */
    border: 1px solid #b3d1ff; /* Disesuaikan */
}

.btn-secondary:hover {
    background-color: #d1e3ff; /* Disesuaikan */
}