    /* 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;
    }

    /* Page Header */
    .page-header {
        background:  url('foto/depan.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
    }
    .page-header h2{
        color: #555;
    }
    .page-header h1 {
        font-size: 48px;
        margin-bottom: 40px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #555;
    }

    .page-header p {
        font-size: 20px;
    max-width: 800px;
    margin: 0 auto 10px;
    color: black;
    }
    .btn {
        display: inline-block;
        background-color: #e67e22;
        color: white;
        padding: 12px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Poppins', sans-serif;
        margin-top: 25px;
    }

    .more{
        display: inline-block;
        background-color: #e67e22;
        color: white;
        padding: 12px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Poppins', sans-serif;
        margin-top: 25px;
        text-align: center;
    }
    
    .btn:hover {
        background-color: #d35400;
    }
    /* Services Section */
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .service-card {
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .service-img {
        height: 220px;
        background-size: cover;
        background-position: center;
    }

    .service-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .service-title {
        font-size: 24px;
        margin-bottom: 15px;
        color: #2c3e50;
        font-weight: 600;
        border-left: 4px solid #e67e22;
        padding-left: 10px;
    }

    .service-description {
        font-size: 16px;
        color: #555;
        margin-bottom: 20px;
        flex-grow: 1;
        font-weight: 400;
    }

    /* About */
     .about {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
            padding: 40px 20px;
        }

        .about-section {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
            padding: 40px 0;
        }

        .image-container {
            flex: 1;
            min-width: 300px;
        }

        .about-image {
            width: 100%;
            height: 400px;
           background:  url('foto/kulit\ kering\ gulung.jpg') no-repeat center center/cover;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 16px;
            border: 1px solid #e0e0e0;
        }

        .content-container {
            flex: 1;
            min-width: 300px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            text-align: left;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-section {
                flex-direction: column;
                gap: 40px;
                padding: 20px 0;
            }

            .image-container,
            .content-container {
                min-width: 100%;
            }

            .about-image {
                height: 300px;
            }

            .section-title {
                font-size: 1.8rem;
                text-align: center;
                margin-bottom: 20px;
            }

            body {
                padding: 20px 15px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5rem;
            }

            .about-text {
                font-size: 1rem;
            }

            .about-image {
                height: 250px;
            }
        }  

    /* 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;
        }
    }