/* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
     :root {
            --primary: #8B4513; /* SaddleBrown - warna kulit klasik */
            --secondary: #D4AF37; /* Emas klasik */
            --accent: #A0522D; /* Sienna */
            --light: #F5F5DC; /* Beige */
            --dark: #2F1B0C; /* Cokelat tua */
            --text: #333333;
            --text-light: #666666;
            --white: #FFFFFF;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }

    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;
    }

    
        /* Konten Utama */
        .gambar {
            text-align: center;
        }
        .about-content {
            padding: 80px 0;
        }
        
        .section {
            margin-bottom: 80px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 2px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 20%;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .content-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .content-image {
            border-radius: 5px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .content-image:before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--secondary);
            z-index: -1;
            border-radius: 5px;
        }
        
        .content-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .content-image:hover img {
            transform: scale(1.05);
        }
        
        /* Nilai-nilai */
        .values {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .value-card {
            background-color: var(--white);
            padding: 40px 30px;
            border-radius: 5px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .value-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        /* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .values {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .value-card {
        padding: 35px 25px;
    }
}

/* Responsive Design - Mobile Landscape */
@media (max-width: 768px) {
    .values-section {
        padding: 60px 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .values {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-title {
        font-size: 1.3rem;
    }
    
    .value-icon {
        font-size: 2.2rem;
    }
}

/* Responsive Design - Mobile Portrait */
@media (max-width: 480px) {
    .values-section {
        padding: 50px 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .values {
        gap: 15px;
        padding: 0 10px;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .value-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .value-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .value-card {
        padding: 20px 15px;
    }
    
    .value-title {
        font-size: 1.1rem;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .value-card,
    .value-icon {
        transition: none;
    }
    
    .value-card::before {
        display: none;
    }
    
    .value-card:hover {
        transform: none;
    }
}
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            letter-spacing: 1px;
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--secondary);
        }

     /* 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;
        }
    }