* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .logo img {
            height: 75px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-vithi {
            font-size: 28px;
            font-weight: 900;
            color: #1a3a5c;
        }

        .logo-track {
            font-size: 28px;
            font-weight: 900;
            color: #2e8b57;
        }

        .logo-tagline {
            font-size: 11px;
            color: #888888;
            font-weight: 400;
            margin-top: 1px;
        }


        .nav-links a {
            margin-left: 25px;
            text-decoration: none;
            color: #1f4e79;
            font-weight: 600;
        }

        .nav-links a:hover {
            color: #2e8b57;
        }

        /* Hero Gradient */
        header {
            background: linear-gradient(135deg, #1f4e79, #2e8b57);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        header h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .container {
            max-width: 1100px;
            margin: auto;
            padding: 60px 20px;
        }

        h2 {
            color: #1f4e79;
            margin-bottom: 20px;
            text-align: center;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .card {
            padding: 25px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: .3s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        /* CTA same gradient */
        .cta {
            background: linear-gradient(135deg, #1f4e79, #2e8b57);
            color: white;
            text-align: center;
            padding: 60px 20px;
        }

        button {
            background: white;
            color: #1f4e79;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
        }

        footer {
            background: linear-gradient(135deg, #1f4e79, #2e8b57);
            color: white;
            text-align: center;
            padding: 25px;
        }

        /* Form Styling */
        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: left;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: bold;
            margin-bottom: 8px;
            color: #1f4e79;
        }

        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        .form-group input:focus, 
        .form-group textarea:focus {
            border-color: #2e8b57;
            outline: none;
            box-shadow: 0 0 5px rgba(46, 139, 87, 0.3);
        }

        .submit-btn {
            background: linear-gradient(135deg, #1f4e79, #2e8b57);
            color: white;
            padding: 15px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
        }

        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Active Nav Link */
        .nav-links .active-link {
            color: #2e8b57;
            border-bottom: 2px solid #2e8b57;
            padding-bottom: 2px;
        }

        /* Info Card Icon */
        .info-card {
            text-align: center;
            padding: 30px 20px;
        }

        .info-icon {
            font-size: 36px;
            margin-bottom: 12px;
        }

        /* Policy Pages */
        .policy-page {
            max-width: 850px;
            padding-top: 50px;
            padding-bottom: 60px;
        }

        .policy-intro {
            font-size: 16px;
            color: #444;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .policy-heading {
            color: #1f4e79;
            font-size: 20px;
            margin-top: 35px;
            margin-bottom: 10px;
            text-align: left;
            border-left: 4px solid #2e8b57;
            padding-left: 12px;
        }

        .policy-subheading {
            color: #2e8b57;
            font-size: 17px;
            margin-top: 20px;
            margin-bottom: 8px;
        }

        .policy-list {
            padding-left: 30px;
            margin: 10px 0 15px 0;
            line-height: 1.9;
            color: #444;
        }

        .policy-list li {
            margin-bottom: 5px;
        }

        .policy-page p {
            color: #444;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .policy-consent {
            background: linear-gradient(135deg, rgba(31, 78, 121, 0.07), rgba(46, 139, 87, 0.07));
            border: 1px solid rgba(46, 139, 87, 0.3);
            border-radius: 8px;
            padding: 20px 25px;
            margin-top: 40px;
            color: #333;
            font-size: 16px;
            line-height: 1.7;
        }

