/* Styles for pure semantic HTML content */
#seo-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #d1d5db;
}

#seo-content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    border-left: 4px solid #ffc107;
    padding-left: 1rem;
}

#seo-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc107;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

#seo-content p {
    margin-bottom: 1.5rem;
}

#seo-content strong {
    color: #ffffff;
    font-weight: 700;
}

/* Lists */
#seo-content ul {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}
#seo-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}
#seo-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background-color: #ffc107;
    border-radius: 50%;
}

#seo-content ol {
    counter-reset: item;
    margin-bottom: 2rem;
    padding-left: 0;
}
#seo-content ol li {
    display: block;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}
#seo-content ol li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #ffc107;
}

/* Updated Table Styling for Mobile Responsiveness */
#seo-content table {
    display: block; /* Enables scrolling on small screens */
    width: 100%;
    overflow-x: auto; /* Horizontal scroll */
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #2e8c4e;
    white-space: nowrap; /* Prevents awkward wrapping in tight cells */
}
#seo-content th {
    background-color: #1b6836;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    padding: 1rem;
    text-align: left;
}
#seo-content td {
    background-color: #0e3a1e;
    padding: 1rem;
    border-bottom: 1px solid #1b6836;
    color: #d1d5db;
}
#seo-content tr:last-child td {
    border-bottom: none;
}
#seo-content tr:hover td {
    background-color: #14532d;
}

#seo-content a {
    color: #ffc107;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}
#seo-content a:hover {
    color: #ffffff;
}

.cta-button {
    background-color: #ffc107;
    color: #000000;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-1px);
}
