        @font-face {
            font-family: 'Brut Grotesque WEB';
			src: url("../fonts/BrutGrotesqueWEB-Regular") format("woff");
            font-weight: normal;
            font-style: normal;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Brut Grotesque WEB', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: white;
            color: #000;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            padding: 20px 0;
        }

        .header-container {
            margin: 0;
            width: 100%;
        }

        .logo {
            width: 187px;
            height: 30px;
        }

		.main-heading {
		    font-size: 48px;
		    font-weight: bold;
		    margin-bottom: 20px;
		    color: #000;
		    text-align: left;

		    margin-left: 88px; /* 👈 adjust this value */
		}

        .search-container {
            max-width: 980px;
            margin: 0 auto 48px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 16px 24px 16px 56px;
            border: 2px solid #000;
            border-radius: 50px;
            font-size: 16px;
            font-family: inherit;
            outline: none;
            background: white;
        }

        .search-input::placeholder {
            color: #666;
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            fill: #666;
            pointer-events: none;
        }
        
		.info-banner {
		    background: #E7C9FF;
		    border-radius: 4px;
		    padding: 18px 22px;
		    font-size: 16px;
		    color: #111;

		    display: flex;
		    align-items: center;
		    justify-content: center;   /* centers horizontally */
		    gap: 14px;

		    text-align: center;        /* centers text */
		    max-width: 980px;
		    margin: 24px auto;
		}

		.info-banner span {
		    line-height: 1.4;
		}
		
		.info-banner a {
		    color: #000;          /* makes it black */
		    text-decoration: underline;
		    font-weight: 500;
		}

		.info-banner a:hover {
		    opacity: 0.7;         /* subtle hover effect */
		}
		.info-icon {
		    width: 20px;
		    height: 20px;
		    flex-shrink: 0;
		}
		
        .divider {
            height: 1px;
            background-color: #ccc;
            margin: 60px 0;
        }

        /* Trending Topics */
        .trending-section {
            margin-bottom: 80px;
        }

        .trending-heading {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 40px;
            text-align: left;
        }

        .trending-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 60px;
        }

        .trending-card {
            background-color: #f5f5f5;
            padding: 32px;
            border-radius: 8px;
            text-align: left;
        }

        .diagnostics-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: 2px solid #5a67d8;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .diagnostics-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .diagnostics-card .card-title {
            color: white;
        }

        .diagnostics-card .card-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .diagnostics-card .card-link {
            color: white;
            font-weight: bold;
            text-decoration: underline;
        }

        .diagnostics-card .card-link:hover {
            color: #e2e8f0;
        }

        .card-title {
            font-size: 20px;
            font-weight: bold;
            color: #000;
            margin-bottom: 12px;
        }

        .card-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }

        .card-link {
            color: #000;
            text-decoration: none;
            font-weight: 500;
        }

        .card-link::after {
            content: " →";
        }

        /* Stay in Touch Section */
        .stay-in-touch {
            background-color: #D4A0FF;
            padding: 60px 0;
        }

        .stay-in-touch h2 {
            font-size: 32px;
            font-weight: bold;
            color: #000;
            margin-bottom: 16px;
            text-align: left;
        }

        .stay-in-touch-content {
            margin-bottom: 40px;
        }

        .stay-in-touch p {
            font-size: 18px;
            color: #000;
            margin-bottom: 0;
            text-align: left;
        }

        .contact-email {
            color: #000;
            text-decoration: underline;
            font-weight: 500;
        }

        /* Social Icons */
        .social-icons-container {
            display: flex;
            justify-content: flex-start;
            gap: 26px;
            flex-wrap: wrap;
        }

        .social-icon-wrapper {
            width: 48px;
            height: 48px;
            background-color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s;
        }

        .social-icon-wrapper:hover {
            opacity: 0.8;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            fill: white;
        }

        /* Call to Action Section */
        .call-to-action {
            padding: 60px 0;
        }

        .cta-heading {
            font-size: 48px;
            font-weight: bold;
            color: #000;
            margin-bottom: 40px;
            text-align: left;
        }

        .cta-content {
            margin-bottom: 40px;
        }

        .cta-subheading {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.5;
            text-align: left;
        }

        .cta-button-container {
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: white;
            color: black;
            padding: 16px 32px;
            border: 2px solid black;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #f8f8f8;
        }

        .phone-icon {
            width: 20px;
            height: 20px;
            fill: black;
        }

        .cta-phone-number {
            display: block;
            font-size: 24px;
            font-weight: bold;
            color: #000;
            margin-bottom: 8px;
            text-decoration: none;
        }

        .cta-hours {
            font-size: 16px;
            color: #666;
        }

        /* Footer */
        footer {
            background-color: #000;
            color: white;
            padding: 60px 0 40px;
            overflow-x: hidden;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            margin-bottom: 40px;
        }

        .footer-logo img {
            width: 280px;
            height: auto;
        }

        .footer-copyright {
            color: #888;
            font-size: 14px;
            margin-bottom: 40px;
            line-height: 1.5;
        }

        .footer-payment {
            margin-bottom: 20px;
        }

        .footer-payment h4 {
            color: white;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 16px;
        }

        .payment-methods {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .payment-icon {
            height: 24px;
            width: auto;
            background-color: white;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .footer-right {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            min-width: 0;
        }

        .footer-column {
            min-width: 0;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            color: white;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #888;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            word-wrap: break-word;
            hyphens: auto;
        }

        .footer-section ul li a:hover {
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-heading {
                font-size: 32px;
            }

            .trending-grid {
                grid-template-columns: 1fr;
            }

            /* Footer responsive fixes */
            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-right {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .footer-logo img {
                width: 280px;
            }

            footer {
                padding: 40px 0 30px;
            }
        }

        @media (max-width: 480px) {
            .main-heading {
                font-size: 24px;
            }

            /* Footer mobile fixes */
            .footer-main {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-right {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .footer-logo img {
                width: 280px;
            }

            footer {
                padding: 30px 0 20px;
            }

            .footer-section h3 {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .footer-section ul li {
                margin-bottom: 8px;
            }

            .footer-section ul li a {
                font-size: 13px;
            }
        }

        @media (max-width: 360px) {
            .footer-logo img {
                width: 280px;
            }

            .footer-section h3 {
                font-size: 15px;
                margin-bottom: 12px;
            }

            .footer-section ul li a {
                font-size: 12px;
            }

            footer {
                padding: 25px 0 15px;
            }

            .footer-main {
                gap: 15px;
            }

            .footer-right {
                gap: 12px;
            }
        }

        /* Ledger top banner */
        .ledger-alert {
            width: 100%;
            background: #000;
            color: #fff;
            font-size: 14px;
            line-height: 1.5;
        }

        .ledger-alert-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 14px 20px;
            text-align: center;
        }

        .ledger-alert strong {
            font-weight: 600;
        }

        .ledger-alert a {
            color: #FF6A00;
            text-decoration: none;
            margin-left: 6px;
            font-weight: 500;
        }

        .ledger-alert a:hover {
            text-decoration: underline;
        }

        @font-face {
          font-family: "Brut Grotesque";
          src: url("../fonts/BrutRegular") format("woff");
          font-weight: 400;
          font-style: normal;
        }

        @font-face {
          font-family: "Brut Grotesque";
          src: url("../fonts/BrutBold") format("woff");
          font-weight: 700;
          font-style: normal;
        }
    
	.vjs-youtube .vjs-iframe-blocker { display: none; }
	.vjs-youtube.vjs-user-inactive .vjs-iframe-blocker { display: block; }
	.vjs-youtube .vjs-poster { background-size: cover; }
	.vjs-youtube-mobile .vjs-big-play-button { display: none; }

	/* Live Chat Button Styles */
	.live-chat-button {
	  position: fixed;
	  bottom: 20px;
	  right: 20px;
	  width: 60px;
	  height: 60px;
	  background-color: #333;
	  border-radius: 50%;
	  cursor: pointer;
	  z-index: 9999;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	  transition: all 0.3s ease;
	}

	.live-chat-button:hover {
	  transform: scale(1.1);
	  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
	}

	.live-chat-button svg {
	  width: 35px;
	  height: 35px;
	}

	/* Chat Modal Styles */
	.chat-modal {
	  display: none;
	  position: fixed;
	  bottom: 100px;
	  right: 20px;
	  width: 350px;
	  height: 500px;
	  background: white;
	  border-radius: 12px;
	  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	  z-index: 10000;
	  overflow: hidden;
	  animation: slideUp 0.3s ease-out;
	}

	@keyframes slideUp {
	  from {
	    transform: translateY(20px);
	    opacity: 0;
	  }
	  to {
	    transform: translateY(0);
	    opacity: 1;
	  }
	}

	@keyframes fadeIn {
	  from {
	    opacity: 0;
	    transform: translateY(10px);
	  }
	  to {
	    opacity: 1;
	    transform: translateY(0);
	  }
	}

	@keyframes fadeOut {
	  from {
	    opacity: 1;
	    transform: translateY(0);
	  }
	  to {
	    opacity: 0;
	    transform: translateY(-10px);
	  }
	}

	.chat-header {
	  background: #333;
	  color: white;
	  padding: 15px 20px;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	}

	.chat-header h3 {
	  margin: 0;
	  font-size: 18px;
	  font-weight: 500;
	  color: white !important;
	  letter-spacing: normal !important;
	}

	.chat-controls {
	  display: flex;
	  gap: 10px;
	}

	.chat-control-btn {
	  background: none;
	  border: none;
	  color: white;
	  font-size: 18px;
	  cursor: pointer;
	  padding: 5px;
	  border-radius: 3px;
	  transition: background 0.2s;
	}

	.chat-control-btn:hover {
	  background: rgba(255, 255, 255, 0.1);
	}

	.chat-body {
	  padding: 30px 20px;
	  height: calc(100% - 70px);
	  overflow-y: auto;
	  background: #f8f9fa;
	  position: relative;
	}

	.chat-welcome {
	  text-align: center;
	  margin-bottom: 30px;
	}

	.chat-welcome h2 {
	  color: #b794f6;
	  font-size: 48px;
	  font-weight: bold;
	  margin: 0 0 20px 0;
	  letter-spacing: -1px;
	}

	.chat-description {
	  color: #666;
	  font-size: 14px;
	  line-height: 1.6;
	  margin-bottom: 20px;
	}

	.chat-privacy-note {
	  color: #888;
	  font-size: 12px;
	  font-style: italic;
	  margin-bottom: 30px;
	}

	.chat-input-container {
	  margin-top: 20px;
	}

	.chat-input {
	  width: 100%;
	  padding: 12px 15px;
	  border: none;
	  border-bottom: 2px solid #b794f6;
	  background: transparent;
	  font-size: 14px;
	  outline: none;
	  transition: border-color 0.3s;
	  margin-bottom: 15px;
	}

	.chat-input:focus {
	  border-bottom-color: #9f7aea;
	}

	.chat-input::placeholder {
	  color: #aaa;
	}

	.chat-email-container {
	  position: relative;
	}

	.chat-submit-btn {
	  position: absolute;
	  right: 10px;
	  top: 50%;
	  transform: translateY(-50%);
	  background: none;
	  border: none;
	  color: #b794f6;
	  font-size: 20px;
	  cursor: pointer;
	  padding: 5px;
	  border-radius: 3px;
	  transition: color 0.2s;
	}

	.chat-submit-btn:hover {
	  color: #9f7aea;
	}

	/* Chat Conversation Styles */
	.chat-conversation {
	  display: none;
	  height: 100%;
	  flex-direction: column;
	}

	.chat-messages {
	  flex: 1;
	  overflow-y: auto;
	  padding: 20px;
	  background: #fff;
	  margin: 0 -20px;
	  border-bottom: 1px solid #eee;
	}

	.message {
	  margin-bottom: 15px;
	  animation: fadeIn 0.3s ease-out;
	}

	.message.agent {
	  text-align: left;
	}

	.message.user {
	  text-align: right;
	}

	.message-bubble {
	  display: inline-block;
	  max-width: 80%;
	  padding: 10px 15px;
	  border-radius: 18px;
	  font-size: 14px;
	  line-height: 1.4;
	}

	.message.agent .message-bubble {
	  background: #f1f1f1;
	  color: #333;
	  border-bottom-left-radius: 5px;
	}

	.message.user .message-bubble {
	  background: #b794f6;
	  color: white;
	  border-bottom-right-radius: 5px;
	  text-align: left;
	  padding: 10px 15px;
	  word-break: break-word;
	}

	.message-input-container {
	  padding: 15px 20px;
	  background: #f8f9fa;
	  border-top: 1px solid #eee;
	  margin: 0 -20px -30px -20px;
	}

	.message-input {
	  width: 100%;
	  padding: 10px 45px 10px 15px;
	  border: 1px solid #ddd;
	  border-radius: 20px;
	  font-size: 14px;
	  outline: none;
	  background: white;
	}

	.message-input:focus {
	  border-color: #b794f6;
	}

	.message-send-btn {
	  position: absolute;
	  right: 25px;
	  top: 50%;
	  transform: translateY(-50%);
	  background: #b794f6;
	  border: none;
	  color: white;
	  width: 30px;
	  height: 30px;
	  border-radius: 50%;
	  cursor: pointer;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  font-size: 14px;
	  transition: background 0.2s;
	}

	.message-send-btn:hover {
	  background: #9f7aea;
	}

	.typing-indicator {
	  display: none;
	  padding: 10px 15px;
	  background: #f1f1f1;
	  border-radius: 18px;
	  border-bottom-left-radius: 5px;
	  color: #666;
	  font-style: italic;
	  margin-bottom: 15px;
	  animation: fadeIn 0.3s ease-out;
	}

	.chat-modal.minimized {
	  height: 70px;
	}

	.chat-modal.minimized .chat-body {
	  display: none;
	}

	.fade-out {
	  animation: fadeOut 0.3s ease-out forwards;
	}

	.fade-in {
	  animation: fadeIn 0.3s ease-out forwards;
	}