/* ================================
   GLOBAL STYLES - BLACK & GOLD THEME
   Soft cream boxes (#e8e4dc) for reduced eye strain
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 70px;
    min-height: 100vh;
}

/* ================================
   NAVBAR - SOFT WHITE
================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #e8e4dc;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-left .nav-logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #c9a227;
}

/* ================================
   CONTAINERS
================================ */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #ffffff;
}

/* ================================
   CARDS & BOXES - SOFT CREAM WITH GOLD TRIM
================================ */
.auth-box {
    background: #e8e4dc;
    padding: 40px;
    border-radius: 16px;
    max-width: 420px;
    margin: 60px auto;
    border: 2px solid #c9a227;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.2);
}

.auth-box h2 {
    color: #1a1a1a;
    margin-bottom: 25px;
}

.auth-box label {
    color: #333;
}

.auth-box input {
    width: 100%;
    padding: 14px;
    margin: 10px 0 20px;
    border: 2px solid #d0ccc4;
    border-radius: 8px;
    font-size: 16px;
    background: #f5f3ef;
    color: #1a1a1a;
}

.auth-box input:focus {
    outline: none;
    border-color: #c9a227;
}

.auth-box .btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

.auth-box p {
    text-align: center;
    margin-top: 20px;
    color: #333;
}

.auth-box a {
    color: #c9a227;
    font-weight: 600;
}

/* ================================
   CHAT PAGE
================================ */
.chat-container {
    max-width: 900px;
}

.chat-header {
    text-align: center;
    margin-bottom: 10px;
}

.usage-info {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
    padding: 15px;
    background: #e8e4dc;
    border-radius: 12px;
    border: 2px solid #c9a227;
}

.usage-info span {
    color: #1a1a1a;
}

.chat-box {
    background: #e8e4dc;
    border-radius: 16px;
    padding: 25px;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 20px;
    border: 2px solid #c9a227;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
}

.chat-message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
}

.chat-message.user {
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
    color: #1a1a1a;
    margin-left: 50px;
}

.chat-message.bot {
    background: #d5d1c8;
    color: #1a1a1a;
    margin-right: 50px;
    border: 1px solid #c0bbb2;
}

.chat-input-area {
    display: flex;
    gap: 15px;
}

.chat-input-area input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #c9a227;
    border-radius: 12px;
    font-size: 16px;
    background: #f5f3ef;
    color: #1a1a1a;
}

.chat-input-area input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

.chat-input-area button {
    padding: 16px 35px;
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-input-area button:hover {
    transform: translateY(-2px);
}

/* ================================
   KNOWLEDGE BASE PAGE
================================ */
.knowledge-container {
    max-width: 800px;
}

.knowledge-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
}

.knowledge-section {
    background: #e8e4dc;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #c9a227;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
}

.knowledge-section h3 {
    margin: 0 0 15px 0;
    color: #1a1a1a;
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d0ccc4;
}

.knowledge-section p {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
}

.upload-area {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.upload-area input[type="file"] {
    flex: 1;
    min-width: 200px;
    color: #1a1a1a;
}

.website-input-area {
    display: flex;
    gap: 15px;
}

.website-input-area input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #d0ccc4;
    border-radius: 8px;
    font-size: 16px;
    background: #f5f3ef;
    color: #1a1a1a;
}

.website-input-area input:focus {
    outline: none;
    border-color: #c9a227;
}

.documents-list {
    margin-top: 15px;
}

.documents-list p {
    color: #666;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d5d1c8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #c0bbb2;
}

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

.document-icon {
    font-size: 20px;
}

.document-name {
    font-weight: 500;
    color: #333;
    word-break: break-all;
}

.document-date {
    color: #777;
    font-size: 12px;
}

.delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.delete-btn:hover {
    background: #c82333;
}

.delete-all-btn {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.delete-all-btn:hover {
    background: #c82333;
}

/* Paste text area */
.paste-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.paste-area input[type="text"] {
    padding: 12px 15px;
    border: 2px solid #d0ccc4;
    border-radius: 8px;
    font-size: 16px;
    background: #f5f3ef;
    color: #1a1a1a;
}

.paste-area textarea {
    padding: 12px 15px;
    border: 2px solid #d0ccc4;
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
    background: #f5f3ef;
    color: #1a1a1a;
}

.paste-area input:focus,
.paste-area textarea:focus {
    outline: none;
    border-color: #c9a227;
}

/* ================================
   BUTTONS
================================ */
.btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

/* ================================
   MESSAGES
================================ */
.message {
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ================================
   UPGRADE PAGE
================================ */
.upgrade-container {
    max-width: 1200px;
}

.upgrade-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.billing-label {
    font-size: 16px;
    color: #888;
    transition: color 0.3s ease;
}

.billing-label.active {
    color: #c9a227;
    font-weight: bold;
}

.save-badge {
    background: #c9a227;
    color: #1a1a1a;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: 0.4s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #e8e4dc;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #c9a227;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* ================================
   PRICING CARDS
================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.pricing-card {
    background: #e8e4dc;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #c9a227;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
    transition: transform 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border-width: 3px;
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.3);
}

.pricing-card.current-plan {
    border-color: #28a745;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c9a227;
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    color: white;
}

.pricing-header.starter {
    background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 100%);
}

.pricing-header.growth {
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
}

.pricing-header.pro {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.pricing-header.enterprise {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.pricing-header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.pricing-header .price {
    font-size: 48px;
    font-weight: bold;
}

.pricing-header .price-period {
    font-size: 14px;
    opacity: 0.9;
}

.pricing-features {
    padding: 30px;
    list-style: none;
    background: #e8e4dc;
}

.pricing-features li {
    padding: 10px 0;
    color: #333;
    border-bottom: 1px solid #d0ccc4;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.overage {
    color: #888;
    font-size: 12px;
    font-style: italic;
}

.pricing-btn {
    display: block;
    margin: 0 30px 30px;
    padding: 14px;
    text-align: center;
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
}

.pricing-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.pricing-btn.enterprise-btn {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: #c9a227;
}

.secure-notice {
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* Four-tier pricing grid */
.pricing-grid.four-tier {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-grid.four-tier {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid.four-tier {
        grid-template-columns: 1fr;
    }
}

/* ================================
   ADMIN PAGE
================================ */
.admin-container {
    max-width: 1100px;
}

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

.stat-card {
    background: #e8e4dc;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #c9a227;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
}

.stat-card h3 {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stat-card .stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #c9a227;
}

.admin-section {
    background: #e8e4dc;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid #c9a227;
}

.admin-section h3 {
    margin: 0 0 20px 0;
    color: #1a1a1a;
    padding-bottom: 10px;
    border-bottom: 1px solid #d0ccc4;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #d0ccc4;
    color: #333;
}

.admin-table th {
    background: #dedad2;
    font-weight: 600;
    color: #1a1a1a;
}

.admin-table tr:hover {
    background: #dedad2;
}

/* ================================
   LANDING PAGE STYLES
================================ */
.landing-page {
    padding-top: 0;
}

.landing-page .navbar {
    background: #e8e4dc;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.landing-page .navbar a {
    color: #1a1a1a;
}

.landing-page .nav-logo {
    color: #1a1a1a;
}

.nav-btn-outline {
    border: 2px solid #c9a227;
    color: #c9a227 !important;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn-outline:hover {
    background: #c9a227;
    color: #1a1a1a !important;
}

.nav-btn {
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
    color: #1a1a1a !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1f1f1f 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    border-bottom: 3px solid #c9a227;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
    color: #1a1a1a;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #c9a227;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #c9a227;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #c9a227;
    color: #1a1a1a;
}

.hero-note {
    font-size: 14px;
    color: #888;
}

/* Section Styles */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 18px;
    margin-bottom: 50px;
}

/* Problem Section */
.problem-section {
    background: #1f1f1f;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: #e8e4dc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #c9a227;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.problem-card h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.problem-card p {
    color: #555;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    background: #1a1a1a;
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.step p {
    color: #888;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: #1f1f1f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #e8e4dc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #c9a227;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

/* Pricing Section */
.pricing-section {
    background: #1a1a1a;
}

.pricing-section .pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* Use Cases Section */
.usecases-section {
    background: #1f1f1f;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.usecase-card {
    background: #e8e4dc;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #c9a227;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
}

.usecase-card h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.usecase-card p {
    color: #555;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1f1f1f 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-top: 3px solid #c9a227;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: #888;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    display: inline-block;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: white;
    padding: 60px 20px 20px;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    margin-bottom: 10px;
    color: #c9a227;
}

.footer-brand p {
    color: #888;
}

.footer-links h4 {
    margin-bottom: 15px;
    color: #c9a227;
}

.footer-links a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a227;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

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

    .problem-grid,
    .solution-steps,
    .features-grid,
    .usecases-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-right {
        display: none;
    }

    .chat-input-area {
        flex-direction: column;
    }

    .chat-message.user {
        margin-left: 20px;
    }

    .chat-message.bot {
        margin-right: 20px;
    }
}

/* ================================
   HELP PAGE STYLES
================================ */
.help-container {
    max-width: 900px;
    padding-bottom: 60px;
}

.help-container h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
}

.help-subtitle {
    text-align: center;
    color: #888;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Table of Contents */
.help-toc {
    background: linear-gradient(135deg, #1f1f1f 0%, #1a1a1a 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 2px solid #c9a227;
}

.help-toc h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #c9a227;
}

.help-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.help-toc li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.help-toc li a:hover {
    background: rgba(201, 162, 39, 0.4);
}

/* Help Sections */
.help-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.help-section h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #c9a227;
}

/* Help Cards */
.help-card {
    background: #e8e4dc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid #c9a227;
}

.help-card h3 {
    margin: 0 0 15px 0;
    color: #1a1a1a;
    font-size: 20px;
}

.help-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.help-card ul, .help-card ol {
    color: #555;
    line-height: 1.8;
    padding-left: 25px;
}

.help-card li {
    margin-bottom: 8px;
}

/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, #e8e4dc 0%, #dedad2 100%);
    border-left: 4px solid #c9a227;
}

/* Solution Card */
.solution-card {
    background: #dde8dd;
    border-left: 4px solid #28a745;
}

/* Browser Card */
.browser-card {
    background: #e8e4dc;
    border: 2px solid #c9a227;
}

/* Tip Card */
.tip-card {
    background: #e8e4dc;
    border-left: 4px solid #c9a227;
}

/* FAQ Card */
.faq-card {
    background: #e8e4dc;
    border: 2px solid #c9a227;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: white;
    text-align: center;
    border: 2px solid #c9a227;
}

.contact-card h3 {
    color: #c9a227;
}

.contact-card p {
    color: rgba(255,255,255,0.9);
}

/* Step List in Help */
.help-card .step-list {
    margin-top: 20px;
}

.help-card .step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.help-card .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.help-card .step-content {
    flex: 1;
}

.help-card .step-content strong {
    display: block;
    font-size: 17px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.help-card .step-content p {
    margin: 0;
    color: #666;
}

/* Example Box */
.example-box {
    background: #dedad2;
    border: 2px dashed #c9a227;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-family: monospace;
    color: #333;
}

/* Visual Guide */
.visual-guide {
    margin-top: 10px;
}

.guide-box {
    background: #dedad2;
    border: 2px solid #333;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
    color: #333;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 8px 0;
    font-size: 16px;
    color: #333;
}

/* Help Button */
.help-btn {
    display: inline-block;
    background: linear-gradient(135deg, #c9a227 0%, #a3851c 100%);
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.help-btn:hover {
    transform: translateY(-2px);
}

/* Contact Methods */
.contact-methods {
    margin: 25px 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c9a227;
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 24px;
}

.response-time {
    font-size: 14px;
    color: #888;
}

/* Mobile Responsive for Help */
@media (max-width: 768px) {
    .help-container h1 {
        font-size: 32px;
    }

    .help-toc ul {
        grid-template-columns: 1fr;
    }

    .help-card .step-item {
        flex-direction: column;
        gap: 10px;
    }

    .help-card .step-number {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 16px;
    }
}