* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 24px;
            font-weight: 900;
            color: #ff6b00;
            text-decoration: none;
        }
        .logo .conqueror {
            color: #1e88e5;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav a:hover {
            color: #ff6b00;
        }
        .nav-buttons {
            display: flex;
            gap: 15px;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: #4caf50;
            color: white;
        }
        .btn-download:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #1e88e5;
            color: white;
        }
        .btn-login:hover {
            background-color: #1565c0;
            transform: translateY(-2px);
        }
        .daman-link {
            margin-left: 20px;
            color: #ff6b00;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid #ff6b00;
        }
        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }
        main {
            padding: 40px 0;
        }
        h1 {
            font-size: 36px;
            color: #ff6b00;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.4;
        }
        h2 {
            font-size: 28px;
            color: #1e88e5;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 22px;
            color: #333;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 16px;
            text-align: justify;
        }
        .intro {
            background-color: #fff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        .highlight {
            font-weight: 700;
            color: #ff6b00;
        }
        .feature-box {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        .feature-item {
            flex: 1 1 300px;
            background-color: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .feature-item h3 {
            color: #4caf50;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feature-item p {
            margin-bottom: 0;
        }
        .image-container {
            width: 100%;
            height: 400px;
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .image-container:hover img {
            transform: scale(1.05);
        }
        .image-container figcaption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.7);
            color: white;
            padding: 10px;
            font-size: 14px;
            text-align: center;
        }
        .list {
            margin: 20px 0 30px 40px;
        }
        .list li {
            margin-bottom: 10px;
            font-size: 16px;
        }
        .faq {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            margin-top: 40px;
        }
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .faq-question {
            font-weight: 700;
            color: #1e88e5;
            margin-bottom: 5px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            display: none;
            color: #555;
        }
        .faq-question.active + .faq-answer {
            display: block;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1 1 200px;
        }
        .footer-section h3 {
            color: #ff6b00;
            margin-bottom: 20px;
            font-size: 18px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: #ff6b00;
        }
        .recommendation {
            background-color: #444;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .recommendation p {
            color: #fff;
            font-size: 16px;
            text-align: center;
            margin-bottom: 0;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 14px;
            color: #ccc;
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 20px;
            }
            .header-content {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .nav-buttons {
                margin-left: auto;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .image-container {
                height: 300px;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                flex-direction: row;
                align-items: center;
            }
            .logo {
                font-size: 20px;
            }
            .btn {
                padding: 8px 15px;
                font-size: 14px;
            }
            .daman-link {
                margin-left: 10px;
                font-size: 14px;
            }
            .intro {
                padding: 20px;
            }
            .feature-item {
                padding: 20px;
            }
            .footer-content {
                gap: 30px;
            }
        }
