/* Fitur Section Styling */
.fitur {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 10px; /* Optional rounded corners */
}


.fitur-content {
    display: flex;
    flex-direction: column;
    width: 60%; /* Left side width */
    gap: 20px; /* Spacing between items */
}

.fitur-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fitur-icon {
    width: 32px; /* Icon width */
    height: auto;
}

.fitur-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fitur-title {
    font-family: 'Spartan', sans-serif;
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(90deg, #1B18F9, #1B18F9, #E146AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.fitur-description {
    font-family: 'Spartan', sans-serif;
    font-size: 18px;
    color: #454545;
}

.fitur-image {
    width: 40%; /* Right side width */
}

.fitur-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design for Devices 768px and Smaller */
@media (max-width: 768px) {
    .fitur {
        flex-direction: column; /* Stack elements vertically */
    }

    .fitur-content {
        width: 100%; /* Full width for left side */
    }

    .fitur-image {
        width: 100%; /* Full width for right side */
        margin-top: 20px; /* Add spacing above image */
    }
}

/* Responsive Design for Devices 480px and Smaller */
@media (max-width: 480px) {
    .fitur-content {
        gap: 15px; /* Adjust spacing between items */
    }

    .fitur-icon {
        width: 32px; /* Reduce icon size for smaller screens */
    }

    .fitur-title {
        font-size: 24px; /* Reduce title font size */
    }

    .fitur-description {
        font-size: 16px; /* Reduce description font size */
    }
}

