		body {
            background-color: #f8f9fa;
            font-family: 'Poppins', sans-serif;
        }
        /*Jumbotron*/
        .jumbotron {
            background-color: #ccd9ef;
            padding: 2rem 1rem;
            border-radius: 0.3rem;
            text-align: center;
        }
        .jumbotron h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #de1b50;
        }
        .jumbotron p {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        /*Card*/
        .card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            background-color: #fff;
            color: #007bff;
            padding: 20px;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .card-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #007bff;
        }
        .card-text {
            margin-bottom: 10px;
            color: #555;
        }

        /*Footer*/
        .footer {
            background-color: #007bff;
            color: #fff;
            padding: 1rem 0;
            text-align: center;
            margin-top: 40px !important;
        }

        /*Hr Desain*/
        .custom-hr {
            border: none;
            height: 5px;
            width: 70px;
            background-color: #007bff;
            margin-bottom: 40px;
        }

        /*FAQ*/
        .accordion-button {
            background-color: #007bff !important;
            color: #fff !important;
            border-radius: 0px;
            border: none;
            padding: 1rem;
            font-weight: bold;
            text-align: left;
            width: 100%;
            transition: all 0.3s;
        }
        .accordion-button:hover {
            background-color: #fff;
            color: #fff !important;
        }
        .accordion-button.collapsed {
            background-color: #fff;
            color: #fff;
        }
        .accordion-body {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: 0px;
        }
        .accordion-item {
            margin-bottom: 1rem;
        }

        /*Blog*/
        .list-group-item {
            border-color: #dee2e6;
            border-radius: 15px;
            margin-bottom: 1rem;
        }
        .list-group-item:hover {
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .list-group-item h5 {
            color: #007bff;
            font-weight: bold;
        }
        .list-group-item small {
            color: #6c757d;
        }

        .content {
            margin-top: 50px;
            margin-bottom: 50px;
        }

