@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


body {
    font-family: 'Work Sans', sans-serif;
    background: #FCFEFE !important;
    zoom: 0.9;
}

p{
    font-size: 24px;
    text-align: justify;
    line-height: 1.2;
}

span {
    font-size: 1.2em;
}

h3, h2, h1 {
    color: #146A0E;
}
h3 {
    font-size: 1.6em;
    font-weight: 500; /* Nilai lebih kecil untuk membuatnya lebih tipis */
}
h2 {
    font-size: 2em;
    font-weight: 500;
}

li {
    font-size: 1.2em;
    color: black;
}
.container {
    max-width: 1370px; /* Adjust as needed */
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px; /* Small padding for smaller screens */
    padding-right: 20px;
}

.hero {
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    color: white;
    padding: 3rem;
    border-radius: 8px;
}

.features h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonials {
    font-style: italic;
}

.call-to-action {
    background-color: #f0f9ff;
    padding: 2rem;
    border-radius: 8px;
}


.section-container{
    display: flex;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* ✅ Tambahkan ini */
    font-size: 30px;
    line-height: 22px;
    color: #19EC15;
    font-weight: 700;
    letter-spacing: .8px;
    margin-top: 100px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-in-out 0.6s forwards;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* ✅ Tambahkan ini */
    color: #146A0E;
    line-height: 1.1em;
    letter-spacing: -3px;
    text-transform: capitalize;
    margin-bottom: 100px;
    font-size: 60px;
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 0.6s ease-in-out 0.9s forwards;
}


.social-media-links i {
    font-size: 1.5rem; /* Ukuran lebih besar */
    gap: 10px;
    color: #146A0E;
}
