* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* text-decoration: none; */
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size:  1.2rem;
}



.header-container { 
    width: 100%;
    display: flex;
    justify-content: center;
    background: #333;
}

header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #333;
    color: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 800px;
    z-index: 1000;
}

header .Sukses Bisnis Online {
    font-size: 1.5rem;
}

header nav {
    display: flex;
    gap: 1rem;
}

header nav a {
    color: #fff;
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

main {
    /* max-width: 800px; */
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 2rem;
    text-align: left;
}

h1 {
    font-size:2rem;
}

h2 {
    margin-top: 1rem;
}



.wrapper {
    max-width: 900px;
    margin: auto;
    
}

.image-container {
    margin: 10px auto;
}

.image-container img {
    max-width: 100%;
    border-radius: 5px;
    
}

footer {
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly; 
    padding: 2rem;
    background: #f4f4f4;
}


footer .footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

footer .footer-column a {
    text-decoration: none;
    color: #333;
}


.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px ; 
}

.image-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    padding: 20px;
    
    
    /* background-color: #; */
}

.images { 
    max-width: 80%;
    border: 2px;
    border-color: #2815fc;
    margin: 5px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.book-cover {
    max-width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin: 5px auto;
}


#hero {
    text-align: center;
    padding: 2rem;
    /* background: #f4f4f4; */
}

#hero img {
    max-width: 100%;
    height: auto;
}

#hero h1 {
    margin: 1rem 0;
}

.cta {
    
    background: #825cff;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5%;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease; /* Add transition for smooth effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta:hover {
    background: #5d2df7; /* Change the background color on hover */
    
}



section {
 
  padding: 25px; /* Optional: add padding to the sections */
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  text-align: left; /* Ensure text is aligned to the left */
}



section:nth-child(odd) {
  background-color: white;
}

section:nth-child(even) {
  background-color: rgba(130, 92, 255, 0.14);
}


.section-container {
    max-width: 900px;
    width: 100%;
    text-align: left; /* Ensure text is aligned to the left inside the container */
    padding: 40px 10px;
}


blockquote {
    position: relative;
    padding-left: 80px; /* Add padding to the left to make room for the image */
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 10px;
    object-fit: cover;
}

.tentang-img {
    
    justify-content: center;
    align-items: center;
    max-width: 50%;
    margin: 1rem;
    object-fit: cover;
    border-radius: 50%;
}

.showoff { 
    max-width: 100%;
    border: 2px;
    border-color: #2815fc;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


.price {
    font-size: 1.2rem;
    margin-top: 10px;
}

.normal-price {
    text-decoration: line-through;
    color: grey;
    margin-right: 10px;
}

.sale-price {
    color: #2815fc;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(153, 151, 175, 0.5);
}

/* Add the responsive video embed styles */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 0 auto;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 900px
}


.youtube-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 5px;
  }

  .youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
  }

  .youtube-player img {
    object-fit: cover;
    display: block;
    left: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
  }

  .youtube-player img:hover {
    -webkit-filter: brightness(75%);
  }

  .youtube-player .play {
    height: 48px;
    width: 68px;
    left: 50%;
    top: 50%;
    margin-left: -34px;
    margin-top: -24px;
    position: absolute;
    background: url('https://i.ibb.co/j3jcJKv/yt.png') no-repeat;
    cursor: pointer;
  }


@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .menu.active {
        display: flex;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
        padding: 1rem 0;
    }

    .menu.active a {
        padding: 0.5rem 1rem;
    }
    
     footer {
        flex-direction: column;
        /* align-items: flex-start; */
        align-items: center
    }
    

    
}

@media screen and (min-width: 769px) {
    .tentang-img {
        max-width: 15%;
    }
    
    .book-cover {
        max-width: 50%;
    }
    
    .showoff {
        max-width: 40%;
    }
    
    .normal-price {
        font-size: 2rem;
    }
    
    .sale-price {
        font-size: 2rem;
    }
    
  
    
}

ul {
    list-style: none; /* Remove default bullet points */
    padding-left: 0;  /* Remove default padding */
}

ul li {
    padding-left: 0; /* Indent list items */
    text-indent: 0; /* Negative indent to align text with padding */
    /*position: relative;*/
    padding: 0.5rem;
}

ul li i {
    margin-right: 10px; /* Adjust this value to increase or decrease the space */
    color: green;
}





