  /* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {
        background-color: #f8f9fa;
        color: #333;
        line-height: 1.6;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles */
    header {
        background-color: #2c3e50;
        color: white;
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .logo span {
        color: #e67e22;
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin-left: 25px;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        font-size: 16px;
    }

    nav ul li a:hover {
        color: #e67e22;
    }

    .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
    }

        /* Isi */
    .tengah {
            line-height: 2;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
    }

    .tengah1 {
            max-width: 700px;        
    }
    .judul{
        text-align: center;
        padding-bottom: 40px;
        padding-top: 40px;
        font-size: 35px;
        font-weight: bold;
    }
    .isi{
        padding-left: 40px;
    }
    .judul2{
        padding-left: 60px;
        padding-top: 30px;
        font-weight: bold;
    }
    .foto{
        padding-top: 40px;
        text-align: center;
        display: block;
        margin: auto;
    }
    .gambarsapi{
        text-align: center;
        margin-bottom: 15px;
    }

     /* Footer */
    footer {
        background-color: #2c3e50;
        color: white;
        padding: 40px 0 20px;
        text-align: center;
        margin-top: 60px;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        margin-bottom: 20px;
        padding: 0 15px;
        text-align: left;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        font-weight: 600;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: #e67e22;
        bottom: 0;
        left: 0;
    }

    .footer-section p, .footer-section a {
        color: #bdc3c7;
        margin-bottom: 10px;
        display: block;
        text-decoration: none;
        transition: color 0.3s;
        font-weight: 400;
    }

    .footer-section a:hover {
        color: #e67e22;
    }

    .social-icons a {
        display: inline-block;
        margin-right: 15px;
        font-size: 18px;
    }

    .copyright {
        border-top: 1px solid #34495e;
        padding-top: 20px;
        font-size: 14px;
        color: #bdc3c7;
        font-weight: 300;
    }
   


    /* Responsive Styles */
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

        nav ul {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #2c3e50;
            text-align: center;
            padding: 20px 0;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        nav ul.show {
            display: flex;
        }

        nav ul li {
            margin: 10px 0;
        }

        .page-header h1 {
            font-size: 32px;
        }

        .page-header p {
            font-size: 16px;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .page-header {
            padding: 60px 20px;
        }

        .page-header h1 {
            font-size: 28px;
        }

        .service-title {
            font-size: 22px;
        }

        .service-content {
            padding: 20px;
        }
    }