* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        :root {
            --primary: #FF6B00; 
            --secondary: #0096FF; 
            --accent: #2E8B57; 
            --light: #F9F9F9;
            --dark: #1A1A1A;
            --text: #333333;
            --light-text: #666666;
            --border: #E0E0E0;
            --spacing: 1.2rem;
            --border-radius: 10px;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        body {
            background-color: #F5F5F5;
            color: var(--text);
            line-height: 1.8;
            font-size: 16px;
        }
        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem var(--spacing);
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--secondary);
            margin-left: 5px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .nav-links li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .nav-links li a:hover {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .nav-links li a.daman-link {
            color: var(--accent);
            font-weight: 700;
        }
        .btn {
            padding: 0.9rem 1.8rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 1rem;
            text-align: center;
        }
        .btn-download {
            background-color: var(--primary);
            color: white;
            margin-right: 1rem;
            box-shadow: 0 3px 0 #CC5500;
        }
        .btn-download:hover {
            background-color: #E55A00;
            transform: translateY(-2px);
            box-shadow: 0 5px 0 #CC5500;
        }
        .btn-login {
            background-color: var(--secondary);
            color: white;
            box-shadow: 0 3px 0 #007ACC;
        }
        .btn-login:hover {
            background-color: #0088E6;
            transform: translateY(-2px);
            box-shadow: 0 5px 0 #007ACC;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
            background: none;
            border: none;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('https://host.com/images/sasaram-top-runner-hero.jpg') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            text-align: center;
            margin-bottom: 4rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 3rem;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        main {
            margin-bottom: 6rem;
        }
        .section {
            margin-bottom: 5rem;
            background-color: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--primary);
            font-weight: 800;
        }
        .section-subtitle {
            font-size: 1.6rem;
            color: var(--accent);
            margin: 2.5rem 0 1.2rem;
            font-weight: 700;
        }
        .paragraph {
            margin-bottom: 1.8rem;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: var(--primary);
        }
        .list {
            margin-left: 2.5rem;
            margin-bottom: 2rem;
        }
        .list li {
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
            border: 1px solid var(--border);
        }
        .image-caption {
            margin-top: 1rem;
            font-style: italic;
            color: var(--light-text);
            font-size: 1rem;
        }
        .quote {
            font-style: italic;
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2.5rem 0;
            color: #555;
            background-color: #FFF8F0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-size: 1.1rem;
        }
        .table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            font-size: 1.05rem;
        }
        .table th, .table td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        .table th {
            background-color: #F0F8FF;
            color: var(--secondary);
            font-weight: 700;
        }
        .table tr:hover {
            background-color: #F9FCFF;
        }
        .tabs {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            border-bottom: 1px solid var(--border);
            padding-bottom: 0.5rem;
        }
        .tab {
            padding: 0.8rem 1.5rem;
            background-color: #F5F5F5;
            border: none;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tab.active {
            background-color: var(--primary);
            color: white;
        }
        .tab-content {
            padding: 1.5rem;
            border: 1px solid var(--border);
            border-radius: 0 var(--border-radius) var(--border-radius) var(--border-radius);
            margin-bottom: 2rem;
        }
        .faq-item {
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border);
            padding-bottom: 1.5rem;
        }
        .faq-question {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.8rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
        }
        .faq-answer {
            color: var(--light-text);
            font-size: 1.05rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 5rem 0 2.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 1.8rem;
            color: var(--primary);
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            font-weight: 700;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links li a {
            color: #DDD;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .recommendation {
            background-color: rgba(255,107,0,0.1);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-bottom: 3rem;
            border-left: 5px solid var(--primary);
        }
        .recommendation h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 700;
        }
        .recommendation p {
            color: var(--text);
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .copyright {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: #AAA;
            line-height: 1.6;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .section-subtitle {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: white;
                padding: 2rem;
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
                gap: 1.5rem;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 6rem 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .section {
                padding: 2.5rem;
            }
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 4.5rem 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.15rem;
            }
            .section {
                padding: 2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .section-subtitle {
                font-size: 1.4rem;
            }
            .paragraph {
                font-size: 1rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                padding: 0 2rem;
            }
            .btn-download, .btn-login {
                width: 100%;
                margin-right: 0;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 0.8rem var(--spacing);
            }
            .logo {
                font-size: 1.6rem;
            }
            .section {
                padding: 1.5rem;
            }
            .table {
                font-size: 0.95rem;
            }
            .table th, .table td {
                padding: 0.8rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .faq-question {
                font-size: 1rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #E55A00;
        }
