.content pre {
    background: #f6f8fa;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 16px;
    overflow-x: auto;
    margin: 1em 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.content code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    background: #f6f8fa;
    padding: 2px 4px;
    border-radius: 3px;
}

.content pre code {
    background: none;
    padding: 0;
}

/* Code copy button */
.code-container {
    position: relative;
}

.copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #f1f3f4;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75em;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.copy-btn:hover {
    background: #e8eaed;
    border-color: #c4c7c5;
}

.copy-btn.copied {
    background: #e8f5e8;
    color: #137333;
    border-color: #81c995;
}

.content ul,
.content ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
    padding-left: 0;
}

.content li {
    margin-bottom: 0.5em;
}

/* FAQ styles - remove accordion plus signs */
.faq-question::after {
    display: none !important;
}

.faq-question::before {
    display: none !important;
}

/* Remove any accordion functionality */
.faq-question {
    cursor: default !important;
    position: relative;
}

.faq-q-marker {
    font-weight: 600;
    color: #E94560;
    margin-right: 0.5em;
}

/* ===== DEMO PAGE STYLES ===== */
/* Demo page specific subtitle spacing */
body .subtitle {
    margin-bottom: 2em !important;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
    margin: 1em auto 8em auto !important;
    padding: 0;
    min-height: 400px;
    max-width: 1100px;
    width: 100%;
}



.demo-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.demo-title {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.demo-slider {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    position: relative;
    margin-bottom: 15px;
    min-height: 350px;
    min-width: 350px;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    pointer-events: none;
    text-align: center;
    line-height: 1.4;
}

.demo-info {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.get-plan-btn {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Align buttons to the bottom of the demo cards */
.demo-item .get-plan-btn {
    margin-top: auto;
}

.coming-soon {
    opacity: 0.6;
}

.coming-soon .get-plan-btn {
    background: #6c757d;
    cursor: not-allowed;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 2em !important;
    margin-bottom: 2em;
}

.comparison-table th,
.comparison-table td {
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
}

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

th,
td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e1e4e8;
    font-size: 0.9em;
    width: 25%;
}

th:first-child,
td:first-child {
    width: 25%;
    text-align: left;
}

th:not(:first-child),
td:not(:first-child) {
    width: 75%;
}

th {
    background: #f6f8fa;
    font-weight: bold;
    color: #333;
}

.feature-name {
    text-align: left;
    font-weight: 500;
    background: #fafbfc;
    width: 25%;
}

.comparison-table td {
    width: 75%;
}

.standard-col {
    background: rgba(3, 102, 214, 0.05);
}

.pro-col {
    background: rgba(255, 193, 7, 0.05);
}

.enterprise-col {
    background: rgba(40, 167, 69, 0.05);
}

.check {
    color: #28a745;
    font-size: 1.1em;
}

.cross {
    color: #dc3545;
    font-size: 1.1em;
}

.limited {
    color: #ffc107;
    font-size: 0.8em;
}

.price-row {
    font-weight: bold;
}

.price-row .standard-col {
    color: #0366d6;
}

.price-row .pro-col {
    color: #e36209;
}

.price-row .enterprise-col {
    color: #28a745;
}

/* Additional Notes */
.additional-notes {
    margin-top: 2em !important;
    padding: 2em;
    background: #f8f9fa;
    border-radius: 8px;
}

.additional-notes h3 {
    text-align: center;
    margin-bottom: 1.5em;
    color: #333;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
}

.note-item {
    background: white;
    padding: 1.8em;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.note-item h4 {
    margin-bottom: 1em;
    color: #333;
    font-size: 1.1em;
}

.note-item p {
    margin-bottom: 1em;
    color: #666;
    line-height: 1.5;
}

.note-content {
    height: 4em;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1em;
}

.note-button {
    margin-bottom: 1em;
}

.note-list {
    flex-grow: 1;
}

.note-item ul {
    margin: 0;
    padding-left: 1.2em;
}

.note-item li {
    margin-bottom: 0.5em;
    color: #555;
    line-height: 1.4;
    font-size: 0.9em;
}

/* System Requirements Note spacing */
.note-item p:last-of-type {
    margin-top: 1.5em;
    margin-bottom: 0;
}

.contact-btn {
    display: block;
    margin-top: auto;
    margin-bottom: 1em;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    line-height: 20px;
    clear: both;
}



.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Table CTA Buttons */
.cta-row {
    background: #f8f9fa;
    border-top: 2px solid #e1e4e8;
}