
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            background: #FFFAE4;
        }

        /* Trial Page Section */
        .trial-page-section {
            background: linear-gradient(135deg, #FFFAE4 0%, #fcf4d1 100%);
            padding: 8rem 2rem 6rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .trial-page-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        /* Two Column Layout */
        .trial-page-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        /* ============================================
           LEFT SIDE - TEXT CONTENT
        ============================================ */
        .trial-content-left {
            
            padding-right: 2rem;
            
        }

        .trial-main-heading {
          
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.6rem, 5vw, 4.5rem);
            font-weight: 750;
            line-height: 1.0;
            color: #1A202C;
            margin-bottom: 2rem;
        }

        .trial-description {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #4A5568;
            font-weight: 500;
            margin-bottom: 3rem;
        }

        /* Explore Plans Button */
        .trial-explore-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1.2rem 2.5rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            background: linear-gradient(135deg, #FFB340 0%, #FF9500 100%);
            color: #1A202C;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
            margin-bottom: 2rem;
        }

        .trial-explore-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 149, 0, 0.4);
        }

        .trial-explore-icon {
            font-size: 1.2rem;
        }

        /* Upgrade Link */
        .trial-upgrade-text {
            font-size: 1rem;
            color: #4A5568;
            font-weight: 500;
        }

        .trial-upgrade-link {
            color: #1E7A9E;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid #1E7A9E;
            transition: all 0.3s ease;
        }

        .trial-upgrade-link:hover {
            color: #1A6B8C;
            border-bottom-color: #1A6B8C;
        }

        /* ============================================
           RIGHT SIDE - TRIAL FORM
        ============================================ */
        .trial-form-wrapper {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .trial-form-heading {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1E7A9E;
            margin-bottom: 2rem;
            text-align: center;
        }

        /* User Type Selection */
        .trial-user-type {
            margin-bottom: 2rem;
        }

        .trial-user-label {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #1A202C;
            margin-bottom: 1rem;
            display: block;
        }

        .trial-user-label-required {
            color: #E53E3E;
        }

        .trial-user-options {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .trial-user-option {
            position: relative;
        }

        .trial-user-radio {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .trial-user-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            padding: 1.2rem 0.8rem;
            border: 2px solid #E2E8F0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #F7FAFC;
        }

        .trial-user-radio:checked + .trial-user-card {
            border-color: #1E7A9E;
            background: #E8F4F8;
        }

        .trial-user-card:hover {
            border-color: #1E7A9E;
        }

        .trial-user-icon {
            font-size: 2rem;
            color: #1E7A9E;
        }

        .trial-user-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: #1A202C;
            text-align: center;
        }

        /* Form Styling */
        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #1A202C;
            margin-bottom: 0.6rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 1rem 1.2rem;
            font-size: 1rem;
            font-weight: 500;
            border: 2px solid #E2E8F0;
            border-radius: 8px;
            background: white;
            color: #1A202C;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #1E7A9E;
            box-shadow: 0 0 0 3px rgba(30, 122, 158, 0.1);
        }

        .form-group input::placeholder {
            color: #A0AEC0;
        }

        .form-group input[readonly] {
            background: #F7FAFC;
            cursor: not-allowed;
            font-weight: 600;
            color: #4A5568;
        }

        .form-group select {
            cursor: pointer;
        }

        /* Checkbox */
        .trial-checkbox-group {
            margin-bottom: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .trial-checkbox {
            width: 20px;
            height: 20px;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .trial-checkbox-label {
            font-size: 0.95rem;
            color: #4A5568;
            line-height: 1.5;
        }

        .trial-checkbox-link {
            color: #1E7A9E;
            font-weight: 600;
            text-decoration: none;
        }

        .trial-checkbox-link:hover {
            text-decoration: underline;
        }

        /* Submit Button */
        .btn-buy {
            width: 100%;
            padding: 1.3rem 2rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            text-transform: capitalize;
            background: linear-gradient(135deg, #FFB340 0%, #FF9500 100%);
            color: #1A202C;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }

        .btn-buy:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 149, 0, 0.4);
        }

        .btn-arrow {
            font-size: 1.2rem;
        }

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1024px) {
            .trial-page-grid {
                gap: 4rem;
            }

            .trial-user-options {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .trial-page-section {
                padding: 6rem 1.5rem 4rem;
            }

            .trial-page-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .trial-content-left {
                padding-right: 0;
                text-align: center;
            }

            .trial-main-heading {
                margin: 30px;
                font-size: clamp(2rem, 6vw, 4rem);
            }

            .trial-description {
                font-size: 1.05rem;
            }

            .trial-explore-btn {
                width: 100%;
                justify-content: center;
            }

            .trial-upgrade-text {
                text-align: center;
            }

            .trial-form-wrapper {
                padding: 2.5rem;
            }

            .trial-user-options {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .trial-page-section {
                padding: 5rem 1rem 3rem;
            }

            .trial-main-heading {
                font-size: clamp(1.8rem, 7vw, 3.5rem);
            }

            .trial-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .trial-explore-btn {
                padding: 1.1rem 2rem;
                font-size: 1rem;
            }

            .trial-form-wrapper {
                padding: 2rem;
            }

            .trial-form-heading {
                font-size: 1.5rem;
            }

            .trial-user-options {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .trial-user-card {
                padding: 1rem 0.6rem;
            }

            .trial-user-icon {
                font-size: 1.6rem;
            }

            .trial-user-text {
                font-size: 0.85rem;
            }

            .form-group {
                margin-bottom: 1.5rem;
            }

            .form-group input,
            .form-group select {
                padding: 0.9rem 1rem;
                font-size: 0.95rem;
            }

            .btn-buy {
                padding: 1.2rem 1.5rem;
                font-size: 1.05rem;
            }
        }

        @media (min-width: 1440px) {
            .trial-page-container {
                max-width: 1600px;
            }

            .trial-page-section {
                padding: 9rem 3rem 7rem;
            }
        }
    
        /* section 2 */
        .tally-features-section {
  background-color: #0a74a6;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 40px;
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #e9f7ff;
  padding: 25px;
  border-radius: 10px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-card .icon {
  font-size: 28px;
}

.feature-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* ✅ Tablet */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ Mobile */
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}
