* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        :root {
            --primary: #FF9933; 
            --secondary: #138808; 
            --accent: #000080; 
            --light: #F8F9FA;
            --dark: #212529;
            --text: #333333;
            --spacing: 1.5rem;
            --border-radius: 8px;
        }
        body {
            background-color: #faf6ed;
            color: var(--text);
            line-height: 1.6;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem var(--spacing);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .logo span {
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links li a:hover {
            color: var(--primary);
        }
        .nav-links li a.daman-link {
            color: var(--secondary);
            font-weight: 600;
        }
        .btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-download {
            background-color: var(--primary);
            color: white;
            margin-right: 1rem;
        }
        .btn-download:hover {
            background-color: #e68a00;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: var(--accent);
            color: white;
        }
        .btn-login:hover {
            background-color: #000066;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--accent);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://host.com/images/sasaram-premier-stride-hero.jpg') center/cover no-repeat;
            color: white;
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        main {
            margin-bottom: 4rem;
        }
        .section {
            margin-bottom: 4rem;
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .section-title {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--primary);
        }
        .section-subtitle {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 1.8rem 0 1rem;
        }
        .paragraph {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: 600;
            color: var(--accent);
        }
        .list {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .list li {
            margin-bottom: 0.8rem;
        }
        .image-container {
            margin: 2rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--primary);
            padding-left: 1rem;
            margin: 2rem 0;
            color: #555;
        }
        .table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        .table th, .table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .table th {
            background-color: #f8f0e3;
            color: var(--accent);
        }
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }
        .faq-question {
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 0.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            color: #555;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links li a:hover {
            color: var(--primary);
        }
        .recommendation {
            background-color: rgba(255,153,51,0.1);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary);
        }
        .recommendation h4 {
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: white;
                padding: 1.5rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .section-subtitle {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 4rem 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section {
                padding: 1.8rem;
            }
            .btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 0.8rem var(--spacing);
            }
            .logo {
                font-size: 1.5rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
