        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #ffffff;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #e67e22;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo .king {
            color: #27ae60;
            text-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
        }
        .logo .crown {
            font-size: 32px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        nav a {
            text-decoration: none;
            color: #2d3436;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 17px;
            position: relative;
        }
        nav a:hover {
            color: #e67e22;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #e67e22;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .btn {
            padding: 12px 25px;
            border-radius: 35px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(33, 150, 83, 0.2);
        }
        .btn-login {
            background-color: #3498db;
            color: white;
        }
        .btn-login:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(41, 128, 185, 0.2);
        }
        .daman-link {
            color: #e67e22;
            font-weight: 800;
            text-decoration: none;
            border-bottom: 3px solid #e67e22;
            transition: all 0.3s ease;
            font-size: 17px;
        }
        .daman-link:hover {
            color: #d35400;
            border-bottom-color: #d35400;
        }
        .hamburger {
            display: none;
            font-size: 30px;
            cursor: pointer;
            color: #2d3436;
            transition: color 0.3s ease;
        }
        .hamburger:hover {
            color: #e67e22;
        }
        main {
            padding: 50px 0;
        }
        h1 {
            font-size: 42px;
            color: #e67e22;
            margin-bottom: 40px;
            text-align: center;
            line-height: 1.5;
            font-weight: 900;
            text-shadow: 0 2px 4px rgba(230, 126, 34, 0.15);
        }
        h2 {
            font-size: 32px;
            color: #3498db;
            margin: 60px 0 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #f1c40f;
            font-weight: 800;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #3498db;
        }
        h3 {
            font-size: 24px;
            color: #27ae60;
            margin: 40px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h4 {
            font-size: 20px;
            color: #d35400;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 17px;
            text-align: justify;
            line-height: 1.9;
            color: #34495e;
        }
        .intro {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
            margin-bottom: 60px;
            border-left: 8px solid #e67e22;
        }
        .highlight {
            font-weight: 800;
            color: #e67e22;
        }
        .quote {
            font-style: italic;
            font-size: 18px;
            color: #7f8c8d;
            border-left: 4px solid #3498db;
            padding-left: 20px;
            margin: 40px 0;
            line-height: 2;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 15px;
            font-weight: 600;
            color: #2d3436;
        }
        .feature-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0 60px;
        }
        .feature-card {
            flex: 1 1 350px;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid #3498db;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }
        .feature-card h3 {
            color: #3498db;
            margin-top: 0;
        }
        .feature-icon {
            font-size: 36px;
            margin-bottom: 20px;
            color: #e67e22;
        }
        .image-container {
            width: 100%;
            height: 450px;
            margin: 50px 0;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .image-container:hover img {
            transform: scale(1.07);
        }
        .image-container figcaption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
            color: white;
            padding: 30px 20px 20px;
            font-size: 18px;
            text-align: center;
            font-weight: 500;
        }
        .image-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 40px 0;
        }
        .gallery-item {
            flex: 1 1 300px;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-item figcaption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px;
            font-size: 16px;
            text-align: center;
        }
        .list {
            margin: 30px 0 40px 50px;
        }
        .list li {
            margin-bottom: 18px;
            font-size: 17px;
            color: #34495e;
            line-height: 1.8;
            position: relative;
        }
        .list li::before {
            content: '✅';
            position: absolute;
            left: -35px;
            top: 2px;
            color: #27ae60;
        }
        .numbered-list {
            margin: 30px 0 40px 50px;
            list-style-type: decimal;
        }
        .numbered-list li {
            margin-bottom: 18px;
            font-size: 17px;
            color: #34495e;
            line-height: 1.8;
        }
        .tabs {
            display: flex;
            gap: 10px;
            margin: 40px 0 30px;
            border-bottom: 2px solid #ecf0f1;
            padding-bottom: 10px;
        }
        .tab {
            padding: 12px 25px;
            background-color: #ecf0f1;
            border: none;
            border-radius: 8px 8px 0 0;
            cursor: pointer;
            font-weight: 600;
            color: #2d3436;
            transition: all 0.3s ease;
        }
        .tab.active {
            background-color: #3498db;
            color: white;
        }
        .tab-content {
            display: none;
            background-color: white;
            padding: 30px;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }
        .tab-content.active {
            display: block;
        }
        .faq-section {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
            margin: 60px 0;
        }
        .faq-item {
            margin-bottom: 25px;
            border-bottom: 2px solid #f1f1f1;
            padding-bottom: 20px;
        }
        .faq-question {
            font-weight: 700;
            color: #3498db;
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            transition: color 0.3s ease;
        }
        .faq-question:hover {
            color: #e67e22;
        }
        .faq-answer {
            display: none;
            color: #34495e;
            font-size: 17px;
            line-height: 1.8;
        }
        .faq-question.active + .faq-answer {
            display: block;
        }
        .faq-toggle {
            font-size: 22px;
            transition: transform 0.3s ease;
        }
        .faq-question.active .faq-toggle {
            transform: rotate(180deg);
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 50px 0;
        }
        .stat-card {
            flex: 1 1 200px;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            text-align: center;
            border: 2px solid #f1c40f;
        }
        .stat-value {
            font-size: 48px;
            font-weight: 900;
            color: #e67e22;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 18px;
            color: #34495e;
            font-weight: 600;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 70px 0 30px;
            margin-top: 80px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-section {
            flex: 1 1 250px;
        }
        .footer-section h3 {
            color: #f1c40f;
            margin-bottom: 30px;
            font-size: 22px;
            border-bottom: 2px solid #f1c40f;
            padding-bottom: 10px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 15px;
        }
        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 17px;
        }
        .footer-section a:hover {
            color: #f1c40f;
            padding-left: 5px;
        }
        .recommendation {
            background-color: #34495e;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .recommendation p {
            color: #ffffff;
            font-size: 18px;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 500;
            line-height: 1.9;
        }
        .recommendation .btn {
            margin: 0 10px;
        }
        .categories-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        .categories, .tags {
            flex: 1 1 300px;
        }
        .category-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
        }
        .category-link, .tag-link {
            padding: 8px 18px;
            background-color: #34495e;
            color: white;
            border-radius: 25px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .category-link:hover, .tag-link:hover {
            background-color: #f1c40f;
            color: #2c3e50;
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 2px solid #34495e;
            font-size: 16px;
            color: #bdc3c7;
            line-height: 1.8;
        }
        @media (max-width: 1200px) {
            .container {
                max-width: 1000px;
                padding: 0 20px;
            }
            h1 {
                font-size: 38px;
            }
            h2 {
                font-size: 28px;
            }
            .image-container {
                height: 400px;
            }
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 25px;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .nav-buttons {
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }
            .image-container {
                height: 350px;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
                order: 3;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 25px;
                order: 4;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            nav a {
                font-size: 18px;
                padding: 10px 0;
                display: block;
            }
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 32px;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 22px;
            }
            .intro {
                padding: 30px 20px;
            }
            .image-container {
                height: 300px;
            }
            .feature-grid {
                gap: 20px;
            }
            .feature-card {
                padding: 25px;
            }
            .faq-section {
                padding: 30px 20px;
            }
            .footer-content {
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
            .logo {
                font-size: 22px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 15px;
            }
            .daman-link {
                margin-left: 0;
                margin-top: 15px;
                display: block;
                text-align: center;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
                line-height: 1.8;
            }
            .image-container {
                height: 250px;
            }
            .list, .numbered-list {
                margin-left: 30px;
            }
            .list li::before {
                left: -25px;
            }
            .stats-grid {
                gap: 20px;
            }
            .stat-value {
                font-size: 40px;
            }
            .recommendation {
                padding: 20px;
            }
            .recommendation .btn {
                display: block;
                margin: 10px auto;
                width: 100%;
            }
            .categories-tags {
                flex-direction: column;
                gap: 30px;
            }
        }
        :focus {
            outline: 3px solid #f1c40f;
            outline-offset: 2px;
        }
        html {
            scroll-behavior: smooth;
        }
        img {
            loading: lazy;
            max-width: 100%;
        }
