.content h2 {
    color: #1A1A2E;
    margin-top: 1.2em !important;
    margin-bottom: 1.0em !important;
    font-size: 1.9em;
    font-weight: 300;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 25px;
}

/* Specific h2 before step-box */
.content h2+p+.step-box {
    margin-top: 0.5em !important;
}

.content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.content h2.no-border::before {
    display: none;
}

body.company-page .content h2.values-title {
    margin-top: 0.2em !important;
}

/* All pages except index page - tighter h2 spacing */
body:not(.index-page) .content h2 {
    margin-bottom: 0.5em;
}

.content h3 {
    color: #333;
    margin-top: 2em;
    margin-bottom: 0.8em;
    font-size: 1.4em;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.content p {
    margin-bottom: 1.2em;
}

/* Content area text links only */
.content a:not(.get-plan-btn):not(.contact-btn):not(.hero-button):not(.submit-btn):not(.table-cta-btn):not(.standard-btn):not(.pro-btn):not(.enterprise-btn) {
    color: #E94560 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.content a:not(.get-plan-btn):not(.contact-btn):not(.hero-button):not(.submit-btn):not(.table-cta-btn):not(.standard-btn):not(.pro-btn):not(.enterprise-btn):hover {
    color: #0366d6 !important;
    text-decoration: none !important;
}

.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;
}

/* 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;
}

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

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

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

th:nth-child(2),
td:nth-child(2) {
    width: 25%;
}

th:nth-child(3),
td:nth-child(3) {
    width: 25%;
}

th:nth-child(4),
td:nth-child(4) {
    width: 25%;
}



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

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

.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;
}

.cta-row td {
    padding: 20px 12px;
}

/* Plan-specific button colors */
.standard-btn {
    background: #0366d6;
    box-shadow: 0 2px 8px rgba(3, 102, 214, 0.3);
}

.standard-btn:hover {
    background: #0256cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(3, 102, 214, 0.4);
}

.pro-btn {
    background: #e36209;
    box-shadow: 0 2px 8px rgba(227, 98, 9, 0.3);
}

.pro-btn:hover {
    background: #d15502;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 98, 9, 0.4);
}

.enterprise-btn {
    background: #28a745;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.enterprise-btn:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Table CTA buttons inherit the same styles */
.table-cta-btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* ===== TABLE STYLES ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e1e4e8;
}

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
}

tbody tr:hover {
    background: #f8f9fa;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Complete table style reset - Override demo.css */
table th,
table td,
.comparison-table th,
.comparison-table td,
.feature-name,
.standard-col,
.pro-col,
.enterprise-col,
.price-row,
.price-row .standard-col,
.price-row .pro-col,
.price-row .enterprise-col,
.requirement-header td,
.cta-row,
.cta-row td {
    background: transparent !important;
    color: #333 !important;
}

/* Override comparison-table specific styles */
.comparison-table {
    background: white !important;
}

.comparison-table th {
    background: #f8f9fa !important;
}

/* Currency Toggle Switch */
.currency-selector-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 1em 0;
    text-align: center;
}

.currency-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.currency-label {
    font-weight: 500;
    font-size: 1.1em;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}