 :root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --blue: #000080;
            /* Used instead of --navy-blue */
            --light-gray: #f8f9fa;
        }

        /* Base Styles from homepage.html */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
            background-color: var(--white);
            color: var(--blue);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Button Styles from homepage.html */
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            font-family: inherit;
            font-size: 16px;
        }

        .btn-primary {
            background-color: var(--green);
            color: var(--white);
        }

        .btn-secondary {
            background-color: var(--blue);
            color: var(--white);
        }

        .btn-outline {
            border: 2px solid var(--blue);
            color: var(--blue);
            background: transparent;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Header Styles from homepage.html */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo span {
            font-size: 2rem;
            font-weight: 600;
            margin-left: 10px;
            color: var(--blue);
        }

        .logo span .highlight {
            color: var(--green);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--blue);
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--saffron);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        /* Hero Section (original from homepageTemp.html, updated to use new variables) */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://huggingface.co/spaces/Ajay07i/vote-website/resolve/main/images/bg_hero.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 4rem 0;
            color: var(--white);
            position: relative;
        }

        .hero-content {
            max-width: 700px;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        /* Features Section (original from homepageTemp.html, updated with homepage.html section-title) */
        .features {
            padding: 5rem 0;
            background-color: var(--light-gray);
        }

        /* Section Title from homepage.html */
        .section-title {
            font-family: 'Hind', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            color: var(--blue);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--saffron);
            border-radius: 2px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-card.secure {
            border-color: var(--saffron);
        }

        .feature-card.transparent {
            border-color: var(--blue);
        }

        .feature-card.easy {
            border-color: var(--green);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(19, 136, 8, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            color: var(--blue);
        }

        .secure .feature-icon {
            background-color: rgba(255, 153, 51, 0.1);
            color: var(--saffron);
        }

        .transparent .feature-icon {
            background-color: rgba(0, 0, 128, 0.1);
            color: var(--blue);
        }

        .easy .feature-icon {
            background-color: rgba(19, 136, 8, 0.1);
            color: var(--green);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--blue);
        }

        .feature-card p {
            color: var(--text-light);
            /* Keeping old variable */
            font-size: 1.05rem;
        }

        /* Call to Action (original from homepageTemp.html, updated to use new variables) */
        .cta-section {
            padding: 5rem 0;
            text-align: center;
            background: linear-gradient(135deg, var(--saffron), #1F2937);
            color: var(--white);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }

        .cta-buttons.light .btn {
            border-color: var(--white);
        }

        .cta-buttons.light .btn-primary {
            background-color: var(--white);
            color: var(--blue);
        }

        .cta-buttons.light .btn-primary:hover {
            background-color: #f5f5f5;
        }

        .cta-buttons.light .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Footer Styles from homepage.html */
        footer {
            background: linear-gradient(to right, var(--blue), #00005a);
            color: var(--white);
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-family: 'Hind', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            height: 3px;
            width: 50px;
            background: var(--saffron);
            bottom: 0;
            left: 0;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 15px;
        }

        .footer-col ul li a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--saffron);
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-info i {
            margin-right: 15px;
            color: var(--saffron);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: var(--blue);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--saffron);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animation Keyframes (original from homepageTemp.html) */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles (Combined) */
        @media (max-width: 992px) {

            /* Header */
            nav ul {
                display: none;
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {

            /* Hero/CTA */
            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-content {
                max-width: 100%;
                padding: 0 1rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .section-title {
                font-size: 2rem;
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }