      /* Base Styles */

      .dark-mode {
        --primary-color: #5c7cfa;
        --secondary-color: #ff8787;
        --accent-color: #7d6beb;
        --dark-color: #f5f6fa;
        --light-color: #2d3436;
        --text-color: #f5f6fa;
        --text-light: #b2bec3;
        --white: #2d3436;
        --gray: #636e72;
        --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      }


      
      @media (max-width: 768px) {
        body {
          padding-top: 70px; /* Smaller header on mobile */
        }
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      img {
        max-width: 100%;
        height: auto;
      }

      a {
        text-decoration: none;
        color: var(--primary-color);
        transition: var(--transition);
      }

      ul {
        list-style: none;
      }

      /* Header & Navigation */
      header {
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: var(--transition);
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
      }

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

      .logo-image {
        width: 40px;
        height: 40px;
      }

      .logo-text {
        font-weight: 700;
        font-size: 1.2rem;
        color: var(--text-color);
      }













      /* Hero Section */
      .resources-hero {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--accent-color)
        );
        color: var(--white);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }

      .resources-hero-content {
        max-width: 600px;
        position: relative;
        z-index: 2;
      }

      .resources-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }

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

      .floating-element {
        position: absolute;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        z-index: 1;
      }

      .floating-element i {
        font-size: 1.5rem;
      }

      .element-1 {
        width: 80px;
        height: 80px;
        top: 20%;
        left: 70%;
        animation: float 6s ease-in-out infinite;
      }

      .element-2 {
        width: 60px;
        height: 60px;
        top: 60%;
        left: 80%;
        animation: float 5s ease-in-out infinite reverse;
      }

      .element-3 {
        width: 70px;
        height: 70px;
        top: 40%;
        left: 10%;
        animation: float 7s ease-in-out infinite;
      }

      .element-4 {
        width: 50px;
        height: 50px;
        top: 70%;
        left: 20%;
        animation: float 4s ease-in-out infinite reverse;
      }

      @keyframes float {
        0% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(5deg);
        }
        100% {
          transform: translateY(0) rotate(0deg);
        }
      }

      /* Section Styles */
      .section {
        padding: 60px 0;
      }

      .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
        position: relative;
        color: var(--text-color);
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
      }

      /* Overview Section */
      .overview-content {
        display: flex;
        gap: 40px;
        margin-bottom: 40px;
      }

      .overview-text {
        flex: 1;
      }

      .overview-text p {
        margin-bottom: 20px;
        color: var(--text-light);
      }

      .overview-image {
        flex: 1;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
      }

      .overview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .info-card {
        background-color: var(--white);
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        margin-top: 20px;
      }

      .info-card h3 {
        color: var(--primary-color);
        margin-bottom: 10px;
      }

      /* Sections Grid */
      .sections-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }

      .section-card {
        background-color: var(--white);
        padding: 30px 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        text-align: center;
        transition: var(--transition);
      }

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

      .section-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
      }

      .section-card h3 {
        margin-bottom: 10px;
      }

      .section-card p {
        color: var(--text-light);
        margin-bottom: 15px;
      }

      /* Resource Cards */
      .resources-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .resource-card {
        background-color: var(--white);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        position: relative;
      }

      .resource-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
      }

      .resource-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }

      .badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--white);
      }

      .badge-free {
        background-color: var(--success-color);
      }

      .badge-premium {
        background-color: var(--accent-color);
      }

      .resource-content {
        padding: 20px;
      }

      .resource-content h3 {
        margin-bottom: 10px;
      }

      .resource-content p {
        color: var(--text-light);
        margin-bottom: 15px;
      }

      /* Practice Tests */
      .test-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
      }

      .test-card {
        background-color: var(--white);
        padding: 30px 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        text-align: center;
        transition: var(--transition);
      }

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

      .test-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
      }

      .test-card h3 {
        margin-bottom: 10px;
      }

      .test-card p {
        color: var(--text-light);
        margin-bottom: 15px;
      }

      /* Calculator Section */
      .calculator-section {
        background-color: var(--white);
        padding: 30px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
      }

      .calculator-section h3 {
        margin-bottom: 10px;
      }

      .calculator-section p {
        color: var(--text-light);
        margin-bottom: 20px;
      }

      .calculator-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
      }

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

      .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
      }

      .form-control {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid var(--gray);
        border-radius: var(--border-radius);
        font-family: "Poppins", sans-serif;
        transition: var(--transition);
      }

      .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
      }

      /* Buttons */
      .btn {
        display: inline-block;
        padding: 12px 24px;
        background-color: var(--primary-color);
        color: var(--white);
        border: none;
        border-radius: var(--border-radius);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
      }

      .btn:hover {
        background-color: #3a5bef;
        transform: translateY(-2px);
      }

      .btn-outline {
        display: inline-block;
        padding: 10px 20px;
        background-color: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        border-radius: var(--border-radius);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
      }

      .btn-outline:hover {
        background-color: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
      }

      .btn-shop {
        display: inline-block;
        padding: 10px 20px;
        background-color: var(--secondary-color);
        color: var(--white);
        border: none;
        border-radius: var(--border-radius);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
      }

      .btn-shop:hover {
        background-color: #ff5252;
        transform: translateY(-2px);
      }

      /* Accordion */
      .tips-accordion {
        margin-top: 30px;
      }

      .accordion-item {
        margin-bottom: 15px;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
      }

      .accordion-header {
        background-color: var(--white);
        padding: 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--transition);
      }

      .accordion-header:hover {
        background-color: rgba(74, 107, 255, 0.1);
      }

      .accordion-header h3 {
        font-size: 1.1rem;
        color: var(--text-color);
      }

      .accordion-icon {
        transition: var(--transition);
      }

      .accordion-header.active .accordion-icon {
        transform: rotate(180deg);
      }

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

      .accordion-inner {
        padding: 0 20px 20px;
      }

      .accordion-inner p {
        margin-bottom: 10px;
        color: var(--text-light);
      }

      /* Featured Products */
      .featured-products {
        background-color: rgba(74, 107, 255, 0.05);
      }

      .product-slider {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 20px 0;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
      }

      .product-slider::-webkit-scrollbar {
        height: 8px;
      }

      .product-slider::-webkit-scrollbar-track {
        background: var(--gray);
        border-radius: 10px;
      }

      .product-slider::-webkit-scrollbar-thumb {
        background-color: var(--primary-color);
        border-radius: 10px;
      }

      .product-card {
        flex: 0 0 280px;
        background-color: var(--white);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        scroll-snap-align: start;
      }

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

      .product-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
      }

      .product-content {
        padding: 20px;
      }

      .product-title {
        font-size: 1.1rem;
        margin-bottom: 5px;
      }

      .product-price {
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
      }

      .product-description {
        color: var(--text-light);
        font-size: 0.9rem;
        margin-bottom: 15px;
      }

      /* CTA Section */
      .cta-section {
        background: linear-gradient(135deg, var(--secondary-color), #ff8e8e);
        color: var(--white);
        padding: 60px 0;
        text-align: center;
      }

      .cta-content {
        max-width: 600px;
        margin: 0 auto;
      }

      .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
      }

      .cta-content p {
        margin-bottom: 25px;
        opacity: 0.9;
      }

      .newsletter-form {
        display: flex;
        max-width: 500px;
        margin: 0 auto 15px;
      }

      .newsletter-form input {
        flex: 1;
        padding: 12px 15px;
        border: none;
        border-radius: var(--border-radius) 0 0 var(--border-radius);
        font-family: "Poppins", sans-serif;
      }

      .newsletter-form input:focus {
        outline: none;
      }

      .newsletter-form button {
        border-radius: 0 var(--border-radius) var(--border-radius) 0;
        background-color: var(--dark-color);
      }

      .newsletter-form button:hover {
        background-color: #1e272e;
      }

      .privacy-note {
        font-size: 0.8rem;
        opacity: 0.7;
      }

      /* Footer */
      footer {
        background-color: var(--dark-color);
        color: var(--white);
        padding: 60px 0 20px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-column p {
        opacity: 0.8;
        margin-bottom: 20px;
      }

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

      .social-icons a {
        color: var(--white);
        font-size: 1.2rem;
        opacity: 0.7;
        transition: var(--transition);
      }

      .social-icons a:hover {
        opacity: 1;
        transform: translateY(-3px);
      }

      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .footer-links a {
        color: var(--white);
        opacity: 0.8;
        transition: var(--transition);
      }

      .footer-links a:hover {
        opacity: 1;
        padding-left: 5px;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.7;
      }

      /* Calculator Results */
      .calc-result {
        display: none;
        background-color: rgba(74, 107, 255, 0.1);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 20px;
        text-align: center;
      }

      .result-score {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 5px;
      }

      #total-score {
        font-size: 2.5rem;
        margin-top: 15px;
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .overview-content {
          flex-direction: column;
        }

        .calculator-form {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 80%;
          height: calc(100vh - 80px);
          background-color: var(--white);
          flex-direction: column;
          align-items: center;
          padding: 40px 20px;
          transition: var(--transition);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-links.show {
          left: 0;
        }

        .nav-item {
          width: 100%;
        }

        .nav-link {
          justify-content: center;
        }

        .dropdown {
          position: static;
          opacity: 1;
          visibility: visible;
          transform: none;
          box-shadow: none;
          padding: 0;
          margin-top: 10px;
          display: none;
        }

        .nav-item:hover .dropdown {
          display: block;
        }

        .mobile-toggle {
          display: block;
        }

        .resources-hero h1 {
          font-size: 2rem;
        }

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

      @media (max-width: 576px) {
        .resources-hero {
          padding: 60px 0;
        }

        .section {
          padding: 40px 0;
        }

        .cta-content h2 {
          font-size: 1.8rem;
        }

        .newsletter-form {
          flex-direction: column;
        }

        .newsletter-form input {
          border-radius: var(--border-radius);
          margin-bottom: 10px;
        }

        .newsletter-form button {
          border-radius: var(--border-radius);
        }
        
        .techniques-grid {
          grid-template-columns: 1fr;
        }
        
        .planner-container,
        .tracker-dashboard,
        .faq-grid {
          grid-template-columns: 1fr;
        }
        
        .quick-nav {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      
      /* Enhanced Hero Styles */
      .toeic-hero {
        background: linear-gradient(135deg, #4a6bff 0%, #6c5ce7 100%);
        color: white;
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      
      .toeic-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,100 100,0 200,100 300,0 400,100 500,0 600,100 700,0 800,100 900,0 1000,100 1000,200 0,200"/></svg>') repeat-x bottom;
        pointer-events: none;
      }
      
      .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        animation: slideDown 0.8s ease-out;
      }
      
      .hero-content .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        animation: slideUp 0.8s ease-out 0.2s both;
      }
      
      .hero-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin: 2rem 0;
        animation: slideUp 0.8s ease-out 0.4s both;
      }
      
      .hero-actions .btn {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
      }
      
      .hero-actions .btn:hover {
        background: white;
        color: #4a6bff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      }
      
      .quick-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        max-width: 900px;
        margin: 0 auto;
        animation: slideUp 0.8s ease-out 0.6s both;
      }
      
      .quick-nav-item {
        background: rgba(255, 255, 255, 0.15);
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
      }
      
      .quick-nav-item:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px);
        color: white;
      }
      
      .quick-nav-item i {
        display: block;
        font-size: 1.5rem;
        margin-bottom: 8px;
      }
      
      /* Study Techniques Section */
      .study-techniques {
        background: #f8f9fa;
        padding: 80px 0;
      }
      
      .techniques-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }
      
      .technique-card {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      
      .technique-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(45deg, #4a6bff, #6c5ce7);
      }
      
      .technique-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      }
      
      .technique-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, #4a6bff, #6c5ce7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }
      
      .technique-card h3 {
        color: #333;
        margin-bottom: 1rem;
        font-weight: 600;
      }
      
      .technique-card ul {
        list-style: none;
        padding: 0;
        margin-top: 1rem;
      }
      
      .technique-card li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 1.5rem;
      }
      
      .technique-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #4a6bff;
        font-weight: bold;
      }
      
      /* Common Mistakes Section */
      .common-mistakes {
        padding: 80px 0;
        background: white;
      }
      
      .mistakes-accordion {
        max-width: 800px;
        margin: 0 auto;
        margin-top: 3rem;
      }
      
      .mistake-item {
        background: white;
        border-radius: 10px;
        margin-bottom: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: all 0.3s ease;
      }
      
      .mistake-header {
        display: flex;
        align-items: center;
        padding: 1.5rem;
        cursor: pointer;
        background: #f8f9fa;
        transition: all 0.3s ease;
      }
      
      .mistake-header:hover {
        background: #e9ecef;
      }
      
      .mistake-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, #FF6B6B, #FF8E53);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-right: 1rem;
      }
      
      .mistake-header h3 {
        flex: 1;
        margin: 0;
        color: #333;
        font-weight: 600;
      }
      
      .accordion-icon {
        color: #666;
        transition: transform 0.3s ease;
      }
      
      .mistake-item.active .accordion-icon {
        transform: rotate(180deg);
      }
      
      .mistake-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }
      
      .mistake-item.active .mistake-content {
        max-height: 500px;
      }
      
      .mistake-inner {
        padding: 2rem;
        border-top: 1px solid #eee;
      }
      
      .mistake-example {
        background: #f8f9fa;
        padding: 1.5rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
      }
      
      .prevention-tips ul {
        list-style: none;
        padding: 0;
      }
      
      .prevention-tips li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 1.5rem;
      }
      
      .prevention-tips li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #28a745;
        font-weight: bold;
      }
      
      /* Study Planner Section */
      .study-planner {
        background: linear-gradient(135deg, #46bbe5 0%, #2d9cdb 100%);
        color: white;
        padding: 80px 0;
      }
      
      .planner-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
        margin-top: 3rem;
      }
      
      .planner-form {
        background: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
      }
      
      .form-group {
        margin-bottom: 1.5rem;
      }
      
      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
      }
      
      .form-control {
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.9);
        color: #333;
        font-size: 1rem;
      }
      
      .plan-result {
        background: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
      }
      
      .plan-overview {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
      }
      
      .plan-stat {
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 10px;
      }
      
      
      
      .phase-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
        border-radius: 10px;
        margin-bottom: 1rem;
      }
      
      .phase-item h4 {
        color: #FFD700;
        margin-bottom: 1rem;
      }
      
      /* Progress Tracker Section */
      .progress-tracker {
        background: #f8f9fa;
        padding: 80px 0;
      }
      
      .tracker-dashboard {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
        margin-top: 3rem;
      }
      
      .skill-item {
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 1rem;
      }
      
      .skill-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
      }
      
      .skill-score {
        background: linear-gradient(45deg, #28a745, #20c997);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 15px;
        font-weight: bold;
      }
      
      .progress-bar {
        width: 100%;
        height: 10px;
        background: #e9ecef;
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 1rem;
      }
      
      .progress-fill {
        height: 100%;
        background: linear-gradient(45deg, #4a6bff, #6c5ce7);
        border-radius: 5px;
        transition: width 0.8s ease;
      }
      
      .skill-status {
        color: #666;
        font-size: 0.9rem;
        margin: 0;
      }
      
      .achievement-badges {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      }
      
      .badges-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1rem;
      }
      
      .badge-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        border-radius: 10px;
        background: #f8f9fa;
        transition: all 0.3s ease;
      }
      
      .badge-item.earned {
        background: linear-gradient(45deg, #FFD700, #FFA500);
        color: white;
      }
      
      .badge-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
      }
      
      /* FAQ Section */
      .faq-section {
        background: white;
        padding: 80px 0;
      }
      
      .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
      }
      
      .faq-category h3 {
        color: #4a6bff;
        margin-bottom: 2rem;
        font-weight: 600;
      }
      
      .faq-item {
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
      }
      
      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        background: #f8f9fa;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      
      .faq-question:hover {
        background: #e9ecef;
      }
      
      .faq-question h4 {
        margin: 0;
        color: #333;
        font-size: 1rem;
        font-weight: 600;
      }
      
      .faq-question i {
        color: #666;
        transition: transform 0.3s ease;
      }
      
      .faq-item.active .faq-question i {
        transform: rotate(45deg);
      }
      
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }
      
      .faq-item.active .faq-answer {
        max-height: 200px;
      }
      
      .faq-answer p {
        padding: 1rem 1.5rem;
        margin: 0;
        color: #666;
        line-height: 1.6;
      }
      
      /* Daily Tips Section */
      .daily-tips {
        background: linear-gradient(135deg, #46bbe5 0%, #2d9cdb 100%);
        color: white;
        padding: 80px 0;
      }
      
      .tips-carousel {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
        margin-top: 3rem;
      }
      
      .tip-card {
        background: rgba(255, 255, 255, 0.1);
        padding: 2.5rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        text-align: center;
        display: none;
        animation: fadeIn 0.5s ease-in-out;
      }
      
      .tip-card.active {
        display: block;
      }
      
      .tip-number {
        background: rgba(255, 255, 255, 0.2);
        color: #FFD700;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 1rem;
      }
      
      .tip-card h3 {
        color: white;
        margin-bottom: 1rem;
        font-weight: 600;
      }
      
      .tip-action {
        margin-top: 2rem;
      }
      
      .btn-outline {
        color: white;
        border: 2px solid white;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
      }
      
      .btn-outline:hover {
        background: white;
        color: #46bbe5;
      }
      
      .tip-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
      }
      
      
      
      .tip-dots {
        display: flex;
        gap: 0.5rem;
      }
      
      .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
      }
      
      .dot.active {
        background: white;
      }
      
      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      @keyframes slideUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      