:root {
    --primary-color: #D4AF37; /* Gold color for accents */
    --background-color: #000000; /* Pure Black */
    --surface-color: #121212; /* Very dark grey for cards/surfaces */
    --text-color: #E0E0E0; /* Light grey for text */
    --text-color-secondary: #A0A0A0; /* Dimmer text */
}

/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav li {
    margin-left: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    margin-top: 10px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: #000;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
.hero {
    background-color: #000;
    color: #fff;
    padding: 100px 0;
    position: relative; /* Needed for the pseudo-element */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/background.jpg') no-repeat center center/cover;
    opacity: 0.1; /* Very subtle texture */
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative; /* To be on top of the pseudo-element */
    z-index: 2;
}

.hero-content {
    flex: 2;
}

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

.hero h2 {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-color-secondary);
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--text-color-secondary);
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 20px;
}

.hero-buttons .cta-button, .hero-buttons .secondary-button {
    margin-right: 10px;
}

.rating-card {
    flex: 1;
    background-color: #191919; /* Slightly lighter than surface to stand out */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.rating-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
}

.rating-card ul {
    list-style: none;
    padding: 0;
}

.rating-card li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.rating-card li::before {
    content: '\2022'; /* Bullet character */
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Disclaimer */
.disclaimer {
    background-color: var(--surface-color);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 15px;
    text-align: center;
}

/* General Section Styling */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 600;
}

/* Content Layouts */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid.reverse .text-content {
    order: 1;
}

.content-grid .image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Cards */
.card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.verdict-cards, .feature-cards, .theme-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: var(--surface-color);
}

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

th {
    background-color: #111;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    color: var(--text-color-secondary);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    font-size: 14px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        border-top: 1px solid #333;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        margin: 0;
        text-align: center;
    }

    nav a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #333;
    }

    .mobile-nav-toggle {
        display: block;
    }

    header .cta-button {
        display: none;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .rating-card {
        margin-top: 40px;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .content-grid, .content-grid.reverse {
        grid-template-columns: 1fr;
    }

    .content-grid .image-content {
        margin-bottom: 30px;
    }

    .content-grid.reverse .image-content {
        order: -1;
    }
}

/* Styles for reviews.html */
.review-table-container {
    margin-top: 40px;
    overflow-x: auto; /* Ensures table is responsive */
}

.review-source-transparency ul {
    list-style-position: outside;
    padding-left: 20px;
}

.review-source-transparency ul li {
    margin-bottom: 15px;
}

.caution-text {
    background-color: #2a2a2a; /* Darker background to stand out */
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    font-style: italic;
}

@media (max-width: 768px) {
    .review-table-container table {
        width: 100%;
        display: block;
    }
}

/* Centered Hero for Review Page */
.hero-centered .container {
    justify-content: center;
    text-align: center;
}

.hero-centered .hero-content {
    flex: none; /* remove flex grow/shrink */
}

.hero-centered p {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.hero-centered h1 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 993px) {
    .hero-centered h1 {
        font-size: 46px;
    }
}

.faq-item {
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: var(--surface-color);
}

.faq-item h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.steps-list {
    list-style: none;
    padding-left: 0;
    counter-reset: steps-counter;
}

.steps-list li {
    counter-increment: steps-counter;
    margin-bottom: 20px;
    position: relative;
    padding-left: 45px;
}

.steps-list li::before {
    content: counter(steps-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.pros-list ul, .cons-list ul {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.pros-list li::before {
    content: '\2713'; /* Checkmark */
    color: #28a745; /* Green */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.cons-list li::before {
    content: '\2717'; /* X mark */
    color: #dc3545; /* Red */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* How-to-use guide page */
.htu-page {
    background-color: var(--background-color);
}

.htu-hero {
    padding: 90px 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72)),
        url('../images/background.jpg') no-repeat center center/cover;
}

.htu-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    gap: 40px;
    align-items: center;
}

.htu-kicker {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.htu-hero h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 18px;
    max-width: 850px;
}

.htu-hero h2 {
    color: var(--text-color);
    font-size: 28px;
    margin: 0 0 22px;
    text-align: left;
}

.htu-hero p {
    color: var(--text-color-secondary);
    font-size: 17px;
    max-width: 820px;
}

.htu-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.htu-quick-card {
    background-color: rgba(18, 18, 18, 0.96);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.htu-quick-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 0 0 18px;
}

.htu-quick-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.htu-quick-card li {
    border-bottom: 1px solid #2b2b2b;
    padding: 10px 0 10px 28px;
    position: relative;
}

.htu-quick-card li::before {
    color: var(--primary-color);
    content: '\2713';
    font-weight: 700;
    left: 0;
    position: absolute;
}

.htu-section {
    padding: 76px 0;
}

.htu-section h2 {
    font-size: 34px;
    line-height: 1.25;
    margin: 0 0 24px;
    text-align: left;
}

.htu-section h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.htu-section p,
.htu-section li {
    color: var(--text-color-secondary);
    font-size: 16px;
}

.htu-band {
    background-color: var(--surface-color);
    border-bottom: 1px solid #222;
    border-top: 1px solid #222;
}

.htu-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.htu-narrow {
    max-width: 900px;
}

.htu-image-card img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.htu-table-wrap {
    margin-top: 34px;
    overflow-x: auto;
}

.htu-table-wrap table {
    min-width: 680px;
}

.htu-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.htu-four-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.htu-card {
    background-color: #161616;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    padding: 24px;
}

.htu-band .htu-card {
    background-color: #0d0d0d;
}

.htu-card p {
    margin-bottom: 0;
}

.htu-bio-examples {
    background-color: #0d0d0d;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    margin-top: 28px;
    padding: 28px;
}

.htu-bio-examples p:last-child {
    margin-bottom: 0;
}

.htu-message-list {
    background-color: #0d0d0d;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    margin: 22px 0 0;
    padding: 22px 22px 22px 42px;
}

.htu-message-list li {
    margin-bottom: 12px;
}

.htu-message-list li:last-child {
    margin-bottom: 0;
}

.htu-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.htu-faq-grid article {
    background-color: #0d0d0d;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    padding: 24px;
}

.htu-faq-grid p {
    margin-bottom: 0;
}

.htu-final-cta {
    border: 1px solid #3a3218;
    border-radius: 8px;
    margin-top: 38px;
    padding: 32px;
    text-align: center;
}

.htu-final-cta h2 {
    text-align: center;
}

@media (max-width: 992px) {
    .htu-hero-grid,
    .htu-two-col {
        grid-template-columns: 1fr;
    }

    .htu-card-grid,
    .htu-four-grid,
    .htu-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .htu-hero {
        padding: 64px 0;
    }

    .htu-hero h1 {
        font-size: 36px;
    }

    .htu-hero h2,
    .htu-section h2 {
        font-size: 27px;
    }

    .htu-button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .htu-button-row .cta-button,
    .htu-button-row .secondary-button {
        text-align: center;
    }

    .htu-card-grid,
    .htu-four-grid,
    .htu-faq-grid {
        grid-template-columns: 1fr;
    }

    .htu-section {
        padding: 56px 0;
    }
}

/* Certified Sugar Daddy guide page */
.csd-page {
    background-color: var(--background-color);
}

.csd-hero {
    padding: 92px 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68)),
        url('../images/hero-bg.jpg') no-repeat center center/cover;
}

.csd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.85fr);
    gap: 42px;
    align-items: center;
}

.csd-kicker {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.csd-hero h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 18px;
    max-width: 850px;
}

.csd-hero h2 {
    color: var(--text-color);
    font-size: 28px;
    line-height: 1.3;
    margin: 0 0 22px;
    text-align: left;
}

.csd-hero p {
    color: var(--text-color-secondary);
    font-size: 17px;
    max-width: 820px;
}

.csd-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.csd-snapshot {
    background-color: rgba(18, 18, 18, 0.96);
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    padding: 28px;
}

.csd-snapshot h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 0 0 18px;
}

.csd-snapshot dl {
    margin: 0;
}

.csd-snapshot dt {
    color: #fff;
    font-weight: 700;
    margin-top: 14px;
}

.csd-snapshot dd {
    border-bottom: 1px solid #2b2b2b;
    color: var(--text-color-secondary);
    margin: 4px 0 0;
    padding-bottom: 12px;
}

.csd-snapshot dd:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.csd-section {
    padding: 76px 0;
}

.csd-section h2 {
    font-size: 34px;
    line-height: 1.25;
    margin: 0 0 24px;
    text-align: left;
}

.csd-section h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.csd-section p,
.csd-section li,
.csd-section dd,
.csd-section td {
    color: var(--text-color-secondary);
    font-size: 16px;
}

.csd-band {
    background-color: var(--surface-color);
    border-bottom: 1px solid #222;
    border-top: 1px solid #222;
}

.csd-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.csd-image-card img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.csd-table-wrap {
    margin-top: 34px;
    overflow-x: auto;
}

.csd-table-wrap table {
    min-width: 760px;
}

.csd-eligibility,
.csd-lines {
    background-color: #0d0d0d;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    margin-top: 24px;
    padding: 24px;
}

.csd-eligibility ul {
    margin-bottom: 0;
    padding-left: 22px;
}

.csd-intro {
    max-width: 900px;
}

.csd-step-grid,
.csd-benefit-grid,
.csd-faq-grid {
    display: grid;
    gap: 22px;
    margin-top: 30px;
}

.csd-step-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.csd-benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.csd-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.csd-step-grid article,
.csd-benefit-grid article,
.csd-faq-grid article {
    background-color: #161616;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    padding: 24px;
}

.csd-band .csd-step-grid article,
.csd-band .csd-benefit-grid article,
.csd-band .csd-faq-grid article {
    background-color: #0d0d0d;
}

.csd-step-grid p,
.csd-benefit-grid p,
.csd-faq-grid p,
.csd-lines p {
    margin-bottom: 0;
}

.csd-lines p {
    border-left: 3px solid var(--primary-color);
    margin-top: 14px;
    padding-left: 14px;
}

.csd-final {
    max-width: 940px;
    text-align: center;
}

.csd-final h2 {
    text-align: center;
}

.csd-centered-buttons {
    justify-content: center;
}

@media (max-width: 1100px) {
    .csd-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .csd-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .csd-hero-grid,
    .csd-two-col,
    .csd-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .csd-hero {
        padding: 64px 0;
    }

    .csd-hero h1 {
        font-size: 36px;
    }

    .csd-hero h2,
    .csd-section h2 {
        font-size: 27px;
    }

    .csd-button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .csd-button-row .cta-button,
    .csd-button-row .secondary-button {
        text-align: center;
    }

    .csd-step-grid,
    .csd-benefit-grid {
        grid-template-columns: 1fr;
    }

    .csd-section {
        padding: 56px 0;
    }
}

/* FAQ hub page */
.faqhub-page {
    background-color: var(--background-color);
}

.faqhub-hero {
    padding: 92px 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.66)),
        url('../images/hero-bg1.jpg') no-repeat center center/cover;
}

.faqhub-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
    gap: 42px;
    align-items: center;
}

.faqhub-kicker {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.faqhub-hero h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 18px;
    max-width: 880px;
}

.faqhub-hero h2 {
    color: var(--text-color);
    font-size: 28px;
    line-height: 1.3;
    margin: 0 0 22px;
    text-align: left;
}

.faqhub-hero p {
    color: var(--text-color-secondary);
    font-size: 17px;
    max-width: 820px;
}

.faqhub-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.faqhub-topic-card,
.faqhub-search-box,
.faqhub-item {
    background-color: rgba(18, 18, 18, 0.96);
    border: 1px solid #333;
    border-radius: 8px;
}

.faqhub-topic-card {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    padding: 28px;
}

.faqhub-topic-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 0 0 18px;
}

.faqhub-topic-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faqhub-topic-card li {
    border-bottom: 1px solid #2b2b2b;
    color: var(--text-color-secondary);
    padding: 10px 0 10px 26px;
    position: relative;
}

.faqhub-topic-card li::before {
    color: var(--primary-color);
    content: '\2022';
    font-weight: 700;
    left: 4px;
    position: absolute;
}

.faqhub-search-section {
    background-color: #080808;
    border-bottom: 1px solid #222;
    padding: 34px 0;
}

.faqhub-search-box {
    padding: 24px;
}

.faqhub-search-box label {
    color: #fff;
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.faqhub-search-box input {
    background-color: #050505;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    box-sizing: border-box;
    color: var(--text-color);
    font: inherit;
    padding: 14px 16px;
    width: 100%;
}

.faqhub-search-box input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.faqhub-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.faqhub-filters button {
    background-color: #0b0b0b;
    border: 1px solid #333;
    border-radius: 6px;
    color: var(--text-color);
    cursor: pointer;
    font: inherit;
    padding: 9px 14px;
}

.faqhub-filters button.active,
.faqhub-filters button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.faqhub-result-count {
    color: var(--text-color-secondary);
    margin: 14px 0 0;
}

.faqhub-section {
    padding: 76px 0;
}

.faqhub-band {
    background-color: var(--surface-color);
    border-bottom: 1px solid #222;
    border-top: 1px solid #222;
}

.faqhub-section h2 {
    font-size: 34px;
    line-height: 1.25;
    margin: 0 0 20px;
    text-align: left;
}

.faqhub-section h3 {
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1.35;
    margin: 0 0 12px;
}

.faqhub-section p,
.faqhub-section li,
.faqhub-section td {
    color: var(--text-color-secondary);
    font-size: 16px;
}

.faqhub-section-intro {
    max-width: 900px;
}

.faqhub-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 34px;
}

.faqhub-image-card img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.faqhub-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.faqhub-item {
    padding: 22px;
}

.faqhub-band .faqhub-item {
    background-color: #0d0d0d;
}

.faqhub-item p {
    margin-bottom: 0;
}

.faqhub-item.is-hidden {
    display: none;
}

.faqhub-table-wrap {
    margin: 24px 0 32px;
    overflow-x: auto;
}

.faqhub-table-wrap table {
    min-width: 760px;
}

.faqhub-final {
    max-width: 960px;
    text-align: center;
}

.faqhub-final h2 {
    text-align: center;
}

.faqhub-centered-buttons {
    justify-content: center;
}

@media (max-width: 992px) {
    .faqhub-hero-grid,
    .faqhub-two-col,
    .faqhub-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faqhub-hero {
        padding: 64px 0;
    }

    .faqhub-hero h1 {
        font-size: 36px;
    }

    .faqhub-hero h2,
    .faqhub-section h2 {
        font-size: 27px;
    }

    .faqhub-button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .faqhub-button-row .cta-button,
    .faqhub-button-row .secondary-button {
        text-align: center;
    }

    .faqhub-section {
        padding: 56px 0;
    }
}

/* About SugarDaddyMeet page */
.aboutsdm-page {
    background-color: var(--background-color);
}

.aboutsdm-hero {
    padding: 92px 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68)),
        url('../images/background.jpg') no-repeat center center/cover;
}

.aboutsdm-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(290px, 0.9fr);
    gap: 42px;
    align-items: center;
}

.aboutsdm-kicker {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.aboutsdm-hero h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 18px;
    max-width: 900px;
}

.aboutsdm-hero h2 {
    color: var(--text-color);
    font-size: 28px;
    line-height: 1.3;
    margin: 0 0 22px;
    text-align: left;
}

.aboutsdm-hero p {
    color: var(--text-color-secondary);
    font-size: 17px;
    max-width: 820px;
}

.aboutsdm-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.aboutsdm-snapshot {
    background-color: rgba(18, 18, 18, 0.96);
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    padding: 28px;
}

.aboutsdm-snapshot h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 0 0 16px;
}

.aboutsdm-snapshot dl {
    margin: 0;
}

.aboutsdm-snapshot dt {
    color: #fff;
    font-weight: 700;
    margin-top: 12px;
}

.aboutsdm-snapshot dd {
    border-bottom: 1px solid #2b2b2b;
    color: var(--text-color-secondary);
    margin: 4px 0 0;
    padding-bottom: 10px;
}

.aboutsdm-snapshot dd:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.aboutsdm-section {
    padding: 76px 0;
}

.aboutsdm-section h2 {
    font-size: 34px;
    line-height: 1.25;
    margin: 0 0 24px;
    text-align: left;
}

.aboutsdm-section h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.aboutsdm-section p,
.aboutsdm-section li,
.aboutsdm-section td,
.aboutsdm-section dd {
    color: var(--text-color-secondary);
    font-size: 16px;
}

.aboutsdm-band {
    background-color: var(--surface-color);
    border-bottom: 1px solid #222;
    border-top: 1px solid #222;
}

.aboutsdm-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.aboutsdm-image-card img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.aboutsdm-table-wrap {
    margin-top: 34px;
    overflow-x: auto;
}

.aboutsdm-table-wrap table {
    min-width: 740px;
}

.aboutsdm-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.aboutsdm-five-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.aboutsdm-card-grid article {
    background-color: #161616;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    padding: 24px;
}

.aboutsdm-band .aboutsdm-card-grid article {
    background-color: #0d0d0d;
}

.aboutsdm-card-grid p {
    margin-bottom: 0;
}

.aboutsdm-intro {
    max-width: 920px;
}

.aboutsdm-checklist {
    background-color: #101010;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    margin: 22px 0 0;
    padding: 22px 22px 22px 42px;
}

.aboutsdm-checklist li {
    margin-bottom: 10px;
}

.aboutsdm-checklist li:last-child {
    margin-bottom: 0;
}

.aboutsdm-final {
    max-width: 920px;
    text-align: center;
}

.aboutsdm-final h2 {
    text-align: center;
}

.aboutsdm-centered-buttons {
    justify-content: center;
}

@media (max-width: 1100px) {
    .aboutsdm-card-grid,
    .aboutsdm-five-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .aboutsdm-hero-grid,
    .aboutsdm-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .aboutsdm-hero {
        padding: 64px 0;
    }

    .aboutsdm-hero h1 {
        font-size: 36px;
    }

    .aboutsdm-hero h2,
    .aboutsdm-section h2 {
        font-size: 27px;
    }

    .aboutsdm-button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .aboutsdm-button-row .cta-button,
    .aboutsdm-button-row .secondary-button {
        text-align: center;
    }

    .aboutsdm-card-grid,
    .aboutsdm-five-grid {
        grid-template-columns: 1fr;
    }

    .aboutsdm-section {
        padding: 56px 0;
    }
}
