@import url(https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap);
     /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
        }

body {
    background-color: #f4f4f9;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: rgba(255, 255, 255, 0.8); /* Transparansi sama dengan halaman utama */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Tambahkan bayangan */
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
        }

.navigation {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.navigation a {
    font-size: 1.1em;
    color: #333; /* Samakan warna teks dengan halaman utama */
    text-decoration: none;
    margin-right: 30px;
    font-weight: 500;
    transition: 0.3s ease;
}

.navigation a:hover {
    color: goldenrod; /* Efek hover sama dengan halaman utama */
    text-decoration: underline;
}

.D-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.D-logo:hover {
    transform: scale(1.2); /* Sama seperti halaman utama */
}

        /* Main Section Styling */
        .beranda {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100vh;
            padding: 100px 100px;
            margin-top: 10px;
        }

        .content {
            max-width: 500px;
        }

        .content h1 {
            font-size: 3rem;
            color: #333;
        }

        .content h3 {
            font-size: 1.8rem;
            color: #777;
        }

        .content p {
            margin: 20px 0;
            line-height: 1.6;
            color: #555;
        }

        .grup-tombol a {
            padding: 10px 30px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: 0.3s ease;
        }

        .grup-tombol a:hover {
            background-color: white;
            color: #007bff;
            border: 2px solid #007bff;
        }

        /* Foto Diri Styling */
        .profile-photo {
            max-width: 400px;
            margin-left: 50px;
            margin-top: 70px;
        }

        .profile-photo img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Sosial Media Icons */
        .sosial-media {
            position: fixed;
            bottom: 20px;
            right: 20px;
        }

        .sosial-media a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #ddd;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 15px;
            transition: 0.3s ease;
        }

        .sosial-media a:hover {
            background-color: goldenrod;
        }

        .testimonials, .fun-facts {
            padding: 50px 100px;
            background-color: #f9f9f9;
            text-align: center;
        }
        
        .testimonials h2, .fun-facts h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #333;
        }
        
        .testimonial-container, .facts-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* Styling Cards Umum */
        .testimonial-card, .fact-card {
            width: 300px;
            border: 1px solid #ddd;
            border-radius: 10px;
            background: white;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .testimonial-card:hover, .fact-card:hover {
            transform: scale(1.05);
        }
                
        /* Testimonial Section */
        .testimonial-card p {
            font-style: italic;
            color: #666;
            margin-bottom: 10px;
        }
        
        .testimonial-card h4 {
            font-size: 1.2rem;
            color: #333;
        }
        
        /* Fun Facts Section */
        .facts-container {
            display: flex;
            justify-content: space-around;
        }
        
        .fact-card {
            text-align: center;
        }
        
        .fact-card h3 {
            font-size: 3rem;
            color: #007bff;
            margin-bottom: 10px;
        }
        
        .fact-card p {
            font-size: 1rem;
            color: #555;
        }

        /* Footer Styles */
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px 0;
            position: relative;
            bottom: 0;
            width: 100%;
        }

        

        /* Responsif untuk layar kecil */
        @media (max-width: 768px) {
            .beranda {
                flex-direction: column;
                text-align: center;
            }

            .profile-photo {
                margin-left: 0;
                margin-top: 20px;
            }

            header {
                padding: 20px;
            }

            .navigation a {
                margin-right: 10px;
                font-size: 0.8em;
            }
        }
