        body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #6DBB68;
            --primary-blue: #6D86C9;
            --soft-yellow: #F7F3A8;
            --soft-peach: #F5A785;
            --soft-purple: #A48FAE;
            --white: #FFFFFF;
            --soft-grey-white: #F7F9F7;
            --dark-text: #333333;
            --body-text: #555555;
            --border-grey: #E0E0E0;
        }

        body {
    font-family: "Roboto", sans-serif;
            background-color: var(--white);
            color: var(--body-text);
            line-height: 1.6;
            width: 100%;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--dark-text);
            font-weight: 600;
        }

        /* Notification Bar */
        .notification-bar {
    background-color: #E7853D;
                border-bottom: 1px solid var(--border-grey);
            padding: 12px 0;
            text-align: center;
            font-size: 14px;
            color: #ffffff;
            font-weight: 500;
        }

        /* Header */
        .header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 5px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-green);
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
            margin: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--body-text);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary-green);
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark-text);
            cursor: pointer;
        }
        
        .language-selector {
            position: relative;
            display: inline-block;
        }
        
        .language-btn {
            background-color: transparent;
            border: 2px solid var(--border-grey);
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 500;
            color: var(--body-text);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .language-btn:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 10px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 10px 0;
            min-width: 150px;
            display: none;
            z-index: 1000;
        }
        
        .language-dropdown.active {
            display: block;
        }
        
        .language-option {
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--body-text);
            font-weight: 500;
        }
        
        .language-option:hover {
            background-color: rgba(109, 187, 104, 0.1);
            color: var(--primary-green);
        }
        
        .language-option.active {
            background-color: rgba(109, 187, 104, 0.15);
            color: var(--primary-green);
        }

        .btn-login {
            background-color: var(--primary-blue);
            color: white;
            padding: 10px 24px;
            border-radius: 25px;
            border: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-login:hover {
            background-color: #5a73b3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(109, 134, 201, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background-color: #9DC997;
            padding: 10px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-bg-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
            z-index: 0;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #6D86C9, #A48FAE);
            top: -100px;
            right: -100px;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #F5A785, #F7F3A8);
            bottom: -80px;
            left: -80px;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #6DBB68, #F7F3A8);
            top: 50%;
            right: 20%;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            color:#ffffff;
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--body-text);
            margin-bottom: 35px;
        }

        .btn-primary-green {
            background: linear-gradient(135deg, #6DBB68, #6D86C9);
            color: white;
            padding: 16px 40px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-green:hover {
            background: linear-gradient(135deg, #5da959, #5a73b3);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(109, 187, 104, 0.5);
            color: white;
        }

        .hero-illustration {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .illustration-svg {
            width: 100%;
            max-width: 500px;
        }

        /* Feelings Section */
        .feelings-section {
            padding: 80px 0;
            background-color: var(--soft-grey-white);
        }

        .section-title {
            font-family: Roboto;
            font-weight: 700;
            font-style: Bold;
            font-size: 48px;
            leading-trim: NONE;
            line-height: 100%;
            letter-spacing: 0%;
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark-text);
        }

        .feeling-card {
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: all 0.3s;
            border: 2px solid var(--border-grey);
            height: 100%;
        }

        .feeling-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(109, 187, 104, 0.2);
            /*border-color: var(--primary-green);*/
        }
       .feeling-card-1 {
    background: linear-gradient(135deg, #E49183, #B66F63);
}

        .feeling-card-2 {
    background: linear-gradient(135deg, #9DC997, #6C9067);
        }
        .feeling-card-3 {
    background: linear-gradient(135deg, #97B053, #64782E);
        }
        .feeling-card-4 {
    background: linear-gradient(135deg, #E4BA65, #C89939);
        }
        
       .teen-card-1 {
           background-color: #8E9DCE;
        }

        .teen-card-2 {
           background-color: #5D8EDD;
        }
        .teen-card-3 {
           background-color: #9993D5;
        }
        .teen-card-4 {
           background-color: #C7A7DD;
        }
        .feeling-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 50px;
        }

        .icon-anxious {
            background: linear-gradient(135deg, #6D86C9, #A48FAE);
            color: white;
        }

        .icon-sleep {
            background: linear-gradient(135deg, #A48FAE, #6D86C9);
            color: white;
        }

        .icon-stress {
            background: linear-gradient(135deg, #F5A785, #F7F3A8);
            color: white;
        }

        .icon-mood {
            background: linear-gradient(135deg, #F7F3A8, #6DBB68);
            color: white;
        }

        .feeling-card h3 {
            font-family: Roboto;
            font-weight: 700;
            font-style: Bold;
            font-size: 24px;
            leading-trim: NONE;
            line-height: 100%;
            letter-spacing: 0%;
            margin-bottom: 15px;
            color: #FFFFFF;
        }

        .btn-start-test {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
            padding: 10px 28px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 20px;
            width: 100%;
            max-width: 200px;
        }

        .btn-start-test:hover {
            background-color: var(--primary-green);
            color: white;
        }
        
        .feeling-card {
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: all 0.3s;
            border: 2px solid var(--border-grey);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        .btn-view-all {
            background-color: var(--primary-green);
            color: white;
            padding: 16px 50px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            font-size: 18px;
            margin-top: 50px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-view-all:hover {
            background-color: #5da959;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(109, 187, 104, 0.4);
        }

        /* All Tests Page */
        .all-tests-section {
            background-color: var(--soft-grey-white);
            padding: 60px 0 80px;
            min-height: 100%;
        }

        .all-tests-banner {
            background: linear-gradient(135deg, rgba(109, 187, 104, 0.15), rgba(109, 134, 201, 0.15));
            border-radius: 25px;
            padding: 50px;
            margin-bottom: 60px;
            border: 2px solid rgba(109, 187, 104, 0.2);
            text-align: center;
        }

        .all-tests-banner h2 {
            font-size: 32px;
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        .all-tests-banner p {
            font-size: 16px;
            color: var(--body-text);
            line-height: 1.7;
            max-width: 900px;
            margin: 0 auto;
        }

        .all-tests-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .test-list-card {
            background-color: var(--white);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: all 0.3s;
            border: 2px solid var(--border-grey);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .test-list-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(109, 187, 104, 0.2);
            border-color: var(--primary-green);
        }

        .test-list-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .test-list-card h3 {
            font-size: 22px;
            color: var(--dark-text);
            margin-bottom: 15px;
        }

        .test-list-card p {
            font-size: 15px;
            color: var(--body-text);
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 20px;
        }

        .test-duration {
            font-size: 13px;
            color: var(--primary-blue);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .disclaimer-section {
            background-color: var(--white);
            border-radius: 20px;
            padding: 40px;
            border: 2px solid var(--border-grey);
            margin-top: 60px;
        }

        .disclaimer-section h3 {
            font-size: 22px;
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        .disclaimer-section p {
            font-size: 14px;
            color: var(--body-text);
            line-height: 1.8;
            margin: 0;
        }

        /* Categorized Tests Styles */
        .categorized-tests-section {
            margin-top: 60px;
        }

        .category-main-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            color: var(--dark-text);
            margin-bottom: 40px;
        }

        /* Category Dropdown for Mobile */
        .category-dropdown-wrapper {
            display: none;
            margin-bottom: 30px;
        }

        .category-dropdown-btn {
            width: 100%;
            background-color: var(--white);
            border: 2px solid var(--border-grey);
            border-radius: 15px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 16px;
            font-weight: 600;
            color: var(--dark-text);
            cursor: pointer;
            transition: all 0.3s;
        }

        .category-dropdown-btn:hover {
            border-color: var(--primary-green);
            background-color: rgba(109, 187, 104, 0.05);
        }

        .category-dropdown-btn i {
            transition: transform 0.3s;
        }

        .category-dropdown-btn.active i {
            transform: rotate(180deg);
        }

        .category-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin-top: 8px;
            background-color: var(--white);
            border: 2px solid var(--border-grey);
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            z-index: 100;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.3s;
        }

        .category-dropdown-menu.active {
            max-height: 400px;
            opacity: 1;
        }

        .category-dropdown-item {
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            color: var(--body-text);
            border-bottom: 1px solid var(--border-grey);
        }

        .category-dropdown-item:last-child {
            border-bottom: none;
        }

        .category-dropdown-item:hover {
            background-color: rgba(109, 187, 104, 0.1);
            color: var(--primary-green);
        }

        /* Category Tabs for Desktop */
        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .category-tab {
            background-color: var(--white);
            color: var(--body-text);
            padding: 14px 28px;
            border-radius: 25px;
            border: 2px solid var(--border-grey);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .category-tab:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
            transform: translateY(-2px);
        }

        .category-tab.active {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(109, 187, 104, 0.3);
        }

        /* Category Content */
        .category-content-wrapper {
            position: relative;
        }

        .category-test-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .category-test-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .test-category-card {
            background-color: var(--white);
            border-radius: 25px;
            padding: 35px;
            margin-bottom: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 2px solid var(--border-grey);
            transition: all 0.3s;
        }

        .test-category-card:hover {
            box-shadow: 0 6px 30px rgba(0,0,0,0.12);
            border-color: rgba(109, 187, 104, 0.3);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border-grey);
        }

        .category-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            flex-shrink: 0;
        }

        .category-header h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--dark-text);
            margin: 0;
        }

        .category-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .tests-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        .test-row {
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 1px solid var(--border-grey);
        }

        .test-row:last-child {
            border-bottom: none;
        }

        .test-row:hover {
            background-color: rgba(109, 187, 104, 0.05);
        }

        .test-row td {
            padding: 18px 15px;
            vertical-align: middle;
        }

        .test-name {
            font-size: 17px;
            font-weight: 600;
            color: var(--dark-text);
            width: 50%;
        }

        .test-duration {
            font-size: 14px;
            color: var(--primary-blue);
            font-weight: 500;
            width: 25%;
            white-space: nowrap;
        }

        .test-duration i {
            margin-right: 6px;
        }

        .test-action {
            width: 25%;
            text-align: right;
        }

        .btn-take-test {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .btn-take-test:hover {
            background-color: #5da959;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(109, 187, 104, 0.3);
        }

        .btn-take-test:active {
            transform: translateY(0);
        }

        /* Blog Banner Section */
        .blog-banner-section {
            padding: 80px 0;
            background-color: var(--white);
        }

        .blog-banner-card {
            background-color: #F0EF9AA8;
            border-radius: 25px;
            padding: 60px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 2px solid rgba(109, 187, 104, 0.2);
        }

        .blog-banner-title {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-text);
        }

        .blog-banner-description {
            font-size: 18px;
            color: var(--body-text);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .btn-read-more {
            background-color: var(--primary-blue);
            color: white;
            padding: 14px 35px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-read-more:hover {
            background-color: #5a73b3;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(109, 134, 201, 0.4);
            color: white;
        }

        .blog-banner-image {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-image-svg {
            width: 100%;
            max-width: 450px;
        }

        /* Blog Filters Section */
        .blog-filters-section {
            padding: 80px 0;
            background-color: var(--soft-grey-white);
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-tab {
            background-color: var(--white);
            color: var(--body-text);
            padding: 12px 30px;
            border-radius: 25px;
            border: 2px solid var(--border-grey);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-tab:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
        }

        .filter-tab.active {
            background-color: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
        }

        .blog-card {
            background-color: var(--white);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: all 0.3s;
            border: 2px solid var(--border-grey);
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(109, 134, 201, 0.2);
            border-color: var(--primary-blue);
        }

        .blog-card-tag {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .tag-mental-health {
            background-color: rgba(109, 134, 201, 0.15);
            color: var(--primary-blue);
        }

        .tag-meditation {
            background-color: rgba(164, 143, 174, 0.15);
            color: var(--soft-purple);
        }

        .tag-mindfulness {
            background-color: rgba(109, 187, 104, 0.15);
            color: var(--primary-green);
        }

        .tag-sleep {
            background-color: rgba(245, 167, 133, 0.15);
            color: var(--soft-peach);
        }

        .blog-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-text);
        }

        .blog-card p {
            font-size: 15px;
            color: var(--body-text);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .btn-read-blog {
            background-color: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            padding: 10px 24px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            width: 100%;
            max-width: 150px;
            text-align: center;
        }

        .btn-read-blog:hover {
            background-color: var(--primary-green);
            color: white;
            transform: translateY(-2px);
        }
        
        .blog-card {
            background-color: var(--white);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: all 0.3s;
            border: 2px solid var(--border-grey);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card p {
            font-size: 15px;
            color: var(--body-text);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .blog-content {
            display: none;
        }

        .blog-content.active {
            display: block;
        }

        /* Test Page Styles */
        .test-page-section,
        .test-result-section {
            background-color: var(--soft-grey-white);
            padding: 60px 0;
            min-height: 100%;
        }

        .test-container,
        .result-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .test-header,
        .result-header {
            margin-bottom: 40px;
        }

        .btn-back {
            background-color: transparent;
            border: 2px solid var(--border-grey);
            color: var(--body-text);
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-back:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
            background-color: rgba(109, 187, 104, 0.05);
        }

        .test-progress {
            margin-top: 30px;
        }

        .progress-bar {
            width: 100%;
            height: 12px;
            background-color: var(--border-grey);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
            width: 10%;
            transition: width 0.4s ease;
            border-radius: 10px;
        }

        .progress-text {
            text-align: center;
            color: var(--body-text);
            font-weight: 600;
            font-size: 14px;
            margin: 0;
        }

        .test-content {
            background: linear-gradient(180deg, var(--white), rgba(247, 243, 168, 0.05));
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 2px solid rgba(109, 187, 104, 0.15);
        }

        .test-title {
            font-size: 32px;
            color: var(--dark-text);
            text-align: center;
            margin-bottom: 40px;
        }

        .question-card {
            margin-bottom: 30px;
        }

        .question-text {
            font-size: 24px;
            color: var(--dark-text);
            margin-bottom: 35px;
            line-height: 1.5;
        }

        .answer-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .answer-option {
            background-color: var(--soft-grey-white);
            border: 2px solid var(--border-grey);
            border-radius: 15px;
            padding: 20px 25px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
            color: var(--body-text);
            font-weight: 500;
            text-align: left;
        }

        .answer-option:hover {
            border-color: var(--primary-green);
            background-color: rgba(109, 187, 104, 0.05);
            transform: translateX(5px);
        }

        .answer-option.selected {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: white;
        }

        .test-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            gap: 20px;
        }

        .btn-prev, .btn-next {
            padding: 14px 32px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .btn-prev:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateX(-3px);
        }

        .btn-next {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
            color: white;
            margin-left: auto;
        }

        .btn-next:hover:not(:disabled) {
            transform: translateX(3px);
            box-shadow: 0 6px 20px rgba(109, 187, 104, 0.4);
        }

        .btn-next:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Result Page Styles */
        .result-content {
            background: linear-gradient(180deg, rgba(109, 187, 104, 0.05), var(--white), rgba(109, 134, 201, 0.05));
            border-radius: 25px;
            padding: 60px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 2px solid rgba(109, 187, 104, 0.2);
        }

        .result-layout {
            display: flex;
            gap: 50px;
            align-items: flex-start;
            margin-bottom: 50px;
        }

        .result-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .result-right {
            flex: 1;
        }

        .score-interpretation {
            background-color: var(--soft-grey-white);
            border-radius: 20px;
            padding: 30px;
            text-align: left;
        }

        .score-interpretation h3 {
            font-size: 24px;
            color: var(--dark-text);
            margin-bottom: 25px;
            text-align: center;
        }

        .score-range {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            margin-bottom: 12px;
            border-radius: 12px;
            background-color: var(--white);
            border: 2px solid var(--border-grey);
            transition: all 0.3s;
        }

        .score-range.active {
            border-color: var(--primary-green);
            background-color: rgba(109, 187, 104, 0.1);
            transform: scale(1.02);
            box-shadow: 0 4px 15px rgba(109, 187, 104, 0.2);
        }

        .score-range-number {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-blue);
            min-width: 100px;
        }

        .score-range-text {
            font-size: 16px;
            color: var(--body-text);
            font-weight: 500;
        }

        .result-icon-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 25px;
        }

        .result-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: white;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .result-title {
            font-size: 36px;
            color: var(--dark-text);
            margin-bottom: 40px;
        }

        .result-score-card {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .score-circle {
            position: relative;
            width: 200px;
            height: 200px;
        }

        .score-svg {
            width: 100%;
            height: 100%;
        }

        #score-progress {
            transition: stroke-dashoffset 2s ease;
        }

        .score-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .score-number {
            display: block;
            font-size: 48px;
            font-weight: 700;
            color: var(--dark-text);
        }

        .score-label {
            font-size: 20px;
            color: var(--body-text);
        }

        .result-description {
            text-align: left;
            max-width: 400px;
        }

        .result-description h3 {
            font-size: 28px;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .result-description p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--body-text);
        }

        .recommendations {
            margin-top: 50px;
            margin-bottom: 40px;
        }

        .recommendations h3 {
            font-size: 24px;
            color: var(--dark-text);
            margin-bottom: 30px;
        }

        .recommendation-card {
            background-color: var(--soft-grey-white);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
            height: 100%;
        }

        .recommendation-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }

        .recommendation-card i {
            font-size: 40px;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .recommendation-card h4 {
            font-size: 18px;
            color: var(--dark-text);
            margin-bottom: 10px;
        }

        .recommendation-card p {
            font-size: 14px;
            color: var(--body-text);
            margin: 0;
        }

        .result-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        /* Footer */
        .footer {
            background-color: rgb(151, 176, 83);
            color: rgba(255,255,255,0.85);
            padding: 50px 0 30px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .footer-tagline {
            font-size: 16px;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: var(--primary-green);
            transform: translateY(-3px);
            color: white;
        }

        .footer-copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            margin-top: 30px;
            text-align: center;
            font-size: 14px;
            opacity: 0.8;
        }

        /* Page Styles */
        .about-page, .faq-page, .policy-page, .helpline-page {
            background-color: var(--soft-grey-white);
            padding: 60px 0 80px;
            min-height: 100%;
        }

        .page-header {
            margin-bottom: 30px;
        }

        .page-content {
            background-color: var(--white);
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 2px solid var(--border-grey);
        }

        .page-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 15px;
            text-align: center;
        }

        .page-subtitle {
            font-size: 18px;
            color: var(--body-text);
            text-align: center;
            margin-bottom: 40px;
        }

        .last-updated {
            text-align: center;
            color: var(--body-text);
            font-size: 14px;
            margin-bottom: 40px;
            font-style: italic;
        }

        /* About Page Styles */
        .about-section {
            margin-bottom: 50px;
        }

        .about-section h2 {
            font-size: 28px;
            color: var(--dark-text);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--primary-green);
            display: inline-block;
        }

        .about-section p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--body-text);
            margin-bottom: 20px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 12px 0;
            font-size: 16px;
            color: var(--body-text);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-list i {
            color: var(--primary-green);
            font-size: 20px;
        }

        .value-card {
            background-color: var(--soft-grey-white);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid var(--border-grey);
            height: 100%;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(109, 187, 104, 0.2);
            border-color: var(--primary-green);
        }

        .value-card i {
            font-size: 48px;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 22px;
            color: var(--dark-text);
            margin-bottom: 15px;
        }

        .value-card p {
            font-size: 15px;
            color: var(--body-text);
            margin: 0;
        }

        .disclaimer-text {
            background-color: rgba(109, 134, 201, 0.1);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid var(--primary-blue);
            font-size: 15px;
            line-height: 1.7;
        }

        /* FAQ Page Styles */
        .faq-category {
            margin-bottom: 40px;
        }

        .faq-category h2 {
            font-size: 26px;
            color: var(--dark-text);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-grey);
        }

        .faq-item {
            margin-bottom: 15px;
            border: 2px solid var(--border-grey);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: var(--primary-green);
        }

        .faq-question {
            padding: 20px 25px;
            background-color: var(--soft-grey-white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            font-weight: 600;
            color: var(--dark-text);
            font-size: 16px;
        }

        .faq-question:hover {
            background-color: rgba(109, 187, 104, 0.1);
        }

        .faq-question i {
            transition: transform 0.3s;
            color: var(--primary-green);
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: var(--white);
        }

        .faq-answer.active {
            max-height: 500px;
        }

        .faq-answer p {
            padding: 20px 25px;
            margin: 0;
            font-size: 15px;
            line-height: 1.7;
            color: var(--body-text);
        }

        /* Policy Pages Styles */
        .policy-section {
            margin-bottom: 40px;
        }

        .policy-section h2 {
            font-size: 24px;
            color: var(--dark-text);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .policy-section h3 {
            font-size: 19px;
            color: var(--dark-text);
            margin-top: 20px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .policy-section p {
            font-size: 15px;
            line-height: 1.8;
            color: var(--body-text);
            margin-bottom: 15px;
        }

        .policy-section ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }

        .policy-section ul li {
            font-size: 15px;
            line-height: 1.8;
            color: var(--body-text);
            margin-bottom: 10px;
        }

        /* Helpline Page Styles */
        .emergency-banner {
            background: linear-gradient(135deg, rgba(245, 167, 133, 0.15), rgba(247, 243, 168, 0.15));
            border: 2px solid var(--soft-peach);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .emergency-banner i {
            font-size: 48px;
            color: var(--soft-peach);
            flex-shrink: 0;
        }

        .emergency-banner h3 {
            font-size: 22px;
            color: var(--dark-text);
            margin-bottom: 10px;
        }

        .emergency-banner p {
            font-size: 16px;
            color: var(--body-text);
            margin: 0;
            line-height: 1.6;
        }

        .helpline-filter {
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .helpline-filter label {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-text);
        }

        .helpline-filter select {
            padding: 15px 20px;
            border: 2px solid var(--border-grey);
            border-radius: 15px;
            font-size: 16px;
            color: var(--dark-text);
            background-color: var(--white);
            cursor: pointer;
            transition: all 0.3s;
        }

        .helpline-filter select:focus {
            outline: none;
            border-color: var(--primary-green);
        }

        .helpline-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .helpline-card {
            background-color: var(--soft-grey-white);
            border: 2px solid var(--border-grey);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s;
        }

        .helpline-card:hover {
            box-shadow: 0 6px 25px rgba(0,0,0,0.1);
            border-color: var(--primary-green);
        }

        .helpline-card h3 {
            font-size: 24px;
            color: var(--dark-text);
            margin-bottom: 8px;
        }

        .helpline-state {
            display: inline-block;
            background-color: var(--primary-green);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .helpline-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .helpline-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .helpline-item i {
            font-size: 20px;
            color: var(--primary-blue);
            min-width: 24px;
        }

        .helpline-item a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .helpline-item a:hover {
            color: var(--primary-green);
        }

        .helpline-item span {
            font-size: 16px;
            color: var(--body-text);
        }

        /* Footer Styles */
        .footer-heading {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-green);
            transform: translateX(5px);
        }

        .footer-emergency {
            margin-top: 25px;
            padding: 20px;
            background-color: rgba(245, 167, 133, 0.15);
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-emergency i {
            font-size: 28px;
            color: var(--soft-peach);
        }

        .footer-emergency strong {
            display: block;
            color: white;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .footer-emergency p {
            margin: 0;
            color: rgba(255,255,255,0.9);
            font-size: 18px;
            font-weight: 600;
        }

        .footer-disclaimer {
            font-size: 13px;
            margin-top: 15px;
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100% - 80px);
                background-color: var(--white);
                flex-direction: column;
                padding: 30px;
                transition: left 0.3s ease;
                z-index: 999;
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
                overflow-y: auto;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .mobile-menu-toggle {
                display: block;
            }

            .hero-title {
                font-size: 42px;
            }

            .section-title {
                font-size: 36px;
            }

            .blog-banner-card {
                padding: 40px;
            }

            .blog-banner-title {
                font-size: 32px;
            }
            
            .result-layout {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .feeling-card {
                margin-bottom: 20px;
            }

            .blog-banner-card {
                padding: 25px;
            }

            .blog-banner-title {
                font-size: 24px;
            }

            .filter-tabs {
                gap: 8px;
            }

            .filter-tab {
                padding: 8px 16px;
                font-size: 13px;
            }

            .test-content,
            .result-content {
                padding: 25px 15px;
            }

            .test-title,
            .result-title {
                font-size: 22px;
            }

            .question-text {
                font-size: 18px;
            }

            .answer-option {
                padding: 16px 20px;
                font-size: 15px;
            }

            .result-score-card {
                flex-direction: column;
                gap: 30px;
            }

            .result-description {
                text-align: center;
            }

            .score-circle {
                width: 160px;
                height: 160px;
            }

            .score-number {
                font-size: 36px;
            }
            
            .score-range {
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 15px;
            }
            
            .score-range-number {
                font-size: 16px;
                min-width: auto;
                margin-bottom: 5px;
            }
            
            .score-range-text {
                font-size: 14px;
            }
            
            .recommendation-card {
                padding: 20px 15px;
            }
            
            .btn-start-test,
            .btn-read-blog {
                max-width: 100%;
            }

            /* Mobile Category Navigation */
            .category-main-title {
                font-size: 26px;
                margin-bottom: 25px;
            }

            .category-dropdown-wrapper {
                display: block;
                position: relative;
            }

            .category-tabs {
                display: none;
            }

            /* Mobile Table Styles */
            .test-category-card {
                padding: 15px;
                margin-bottom: 0;
                border-radius: 20px;
            }

            .test-row td {
                padding: 12px 8px;
            }

            .test-name {
                font-size: 15px;
                width: 100%;
                display: block;
                padding-right: 0;
            }

            .test-duration {
                font-size: 12px;
                width: auto;
                display: inline-block;
            }

            .test-action {
                width: auto;
                text-align: left;
                display: inline-block;
            }

            .btn-take-test {
                padding: 8px 18px;
                font-size: 13px;
            }

            /* Stack table cells for mobile */
            .test-row {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                padding: 15px 10px;
                border-bottom: 1px solid var(--border-grey);
            }

            .test-row td {
                padding: 4px 0;
            }

            .test-row .test-name {
                order: 1;
                flex: 0 0 100%;
                margin-bottom: 8px;
            }

            .test-row .test-duration {
                order: 2;
                flex: 0 0 auto;
                margin-right: 15px;
            }

            .test-row .test-action {
                order: 3;
                flex: 0 0 auto;
                margin-left: auto;
            }

            .all-tests-grid {
                grid-template-columns: 1fr;
            }

            /* Page Mobile Styles */
            .page-content {
                padding: 30px 20px;
            }

            .page-title {
                font-size: 28px;
            }

            .about-section h2 {
                font-size: 22px;
            }

            .faq-category h2 {
                font-size: 22px;
            }

            .policy-section h2 {
                font-size: 20px;
            }

            .emergency-banner {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
            }

            .emergency-banner i {
                font-size: 36px;
            }

            .helpline-card {
                padding: 20px;
            }

            .footer-emergency {
                flex-direction: column;
                text-align: center;
            }
        }
