@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* VARIABLES */
:root {
    --c-dark: #212529;
    --c-brand: #be8314;
    --c-brand-light: #ffffffe5; 
    --c-brand-rgb: rgb(20, 190, 71);
    --c-body: #4b4946;
    --font-base: "generalsans", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: alll 0.5s ease;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    color: var(--c-body);
}

h1, h2, h3, h4, h5, h6
.h1, .h2, .h3, .h4, h5, .h6 {
    font-weight: 600;
    color: var(--c-dark);
}

a{
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 150px;
    height: auto;
}


.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.bg-cover{
    background-position: center !important;
    background-size: cover !important;
    background-position: center !important;
}


/* navbar */
.navbar {
    box-shadow: var(--box-shadow);
    color: white;
}
.navbar .navbar-nav .nav-link:hover{
    color: #be8314;
    text-decoration: underline;
}
.navbar .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--c-brand);
}

.navbarNav {
    background: white;
}

/* Footer */
  footer {
    background-color: #20262E;
    color: #ffffff;
    padding: 40px 20px;
  }

  footer a {
    color: #ffffff;
    text-decoration: none;
  }
  footer a:hover {
    color: orange;
  }
  .social-icons a {
    margin-right: 15px;
    color: #ffffff;
    font-size: 20px;
  }
  .social-icons a:hover {
    color: orange;
  }
  .menu-list a {
    display: block;
    margin-bottom: 10px;
  }
  .subscribe input {
    margin-bottom: 10px;
  }

/* Container mepet ke dinding website sesuai permintaan sebelumnya */
        .tnc-container {
            max-width: 1488px; 
            width: 98%; 
            margin: 40px auto;
            padding: 0 10px; /* Jarak tipis ke tepi layar */
        }

        .tnc-card {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 12px 50px rgba(0,0,0,0.1);
            padding: 60px;
            border: none;
        }

        /* Judul di Luar Kotak (Kiri Atas) */
        .main-title-outer {
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 25px;
            font-size: 1.5rem;
            color: #000;
            padding-left: 10px;
        }

        /* Judul di Dalam Kotak (Center) */
        .inner-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .inner-header h1 {
            font-size: 1.4rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .inner-header p {
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }

        .section-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 30px;
            margin-bottom: 15px;
            color: #000;
        }

        .sub-point {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }

        .point-number {
            min-width: 50px;
            font-weight: 600;
        }

        .point-text {
            flex: 1;
            text-align: justify;
        }

        .bullet-list {
            list-style: none;
            padding-left: 50px;
            margin-top: -10px;
            margin-bottom: 20px;
        }

        .bullet-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }

        .bullet-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .tnc-card {
                padding: 30px 20px;
            }
            .point-number {
                min-width: 35px;
            }
            .main-title-outer {
                font-size: 1.1rem;
            }
            .inner-header h1 {
                font-size: 1.1rem;
            }
        }