/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4AF37; /* Metallic Gold */
    --primary-gradient: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #C5A059 100%);
    --secondary-color: #FFFFFF;
    --bg-light: #FAFAFA; /* Very subtle warm grey */
    --text-main: #1A1A1A; /* Rich Black */
    --text-light: #333333;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Raleway', sans-serif;
    --border-radius: 2px; /* Sharper corners for luxury feel */
    --shadow-soft: 0 20px 60px rgba(0,0,0,0.06);
    --shadow-hover: 0 30px 80px rgba(0,0,0,0.12);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.8;
    background-color: var(--bg-light);
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, .logo {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Navigation */
.navbar {
    background: transparent;
    padding: 25px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

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

.logo {
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.logo span {
    color: var(--primary-color);
    font-weight: 400;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    border: 1px solid #fff;
    padding: 12px 30px;
    color: #fff !important;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #fff;
    color: var(--text-main) !important;
}

.btn-nav::after {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 8px 12px;
    border-radius: 2px;
    font-size: 16px;
}

.nav-links.open {
    display: flex;
}

.article-header {
    padding: 60px 0 20px;
    text-align: left;
    border-bottom: none;
}
.article-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.article-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 12px;
}
.article-header .gold-text {
    background: none;
    -webkit-text-fill-color: inherit;
    color: inherit;
    font-style: normal;
}
.article-lead {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto 24px;
    letter-spacing: 0.6px;
}
.article-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.author-line {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 720px;
    margin: 10px 0 20px;
    text-align: left;
}
.article-body {
    max-width: none;
    margin: 0 auto;
    padding-top: 0;
}
.article-body h2 {
    font-size: 1.6rem;
    margin: 24px 0 12px;
}
.article-body ul {
    margin: 0 0 16px 18px;
    padding-left: 6px;
    list-style: disc;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 26px;
}

.toc {
    max-width: 720px;
    margin: 0 auto 18px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.toc h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

.toc a {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.callout {
    background: #fff7e6;
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: var(--border-radius);
    padding: 16px 18px;
    margin: 16px 0 10px;
}

.article-body p {
    font-size: 1.125rem;
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--primary-color);
    z-index: 2000;
}

.breadcrumb {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: var(--text-light);
}

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

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    gap: 30px;
}

.article-main {
    min-width: 0;
}
.article-main p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0 0 18px;
    color: var(--text-main);
    max-width: 75ch;
}
.article-main h2 {
    font-size: 1.6rem;
    margin: 28px 0 14px;
}
.article-main ul {
    margin: 0 0 18px 22px;
    max-width: 75ch;
}
.article-main li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-sidebar {
    min-width: 0;
}

.aside-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    padding: 16px 18px;
    margin-bottom: 18px;
}

.aside-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.aside-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.aside-list a {
    color: var(--text-light);
}

.aside-list a:hover {
    color: var(--primary-color);
}

.aside-form .form-input {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.btn-aside {
    display: inline-block;
    width: 100%;
    padding: 12px 16px;
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--border-radius);
}

.figure {
    margin: 12px 0 24px;
}

.figure img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.article-main .figure:first-child {
    margin-top: 0;
}

.section-illustration {
    margin: 8px 0 18px;
}
.section-illustration img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 8px 0 22px;
}
.guide-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    padding: 14px 16px;
}
.guide-card .gc-title {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.guide-card ul {
    margin: 0 0 0 18px;
}
.guide-card li {
    margin-bottom: 8px;
}
.callout {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    padding: 14px 16px;
    margin: 10px 0 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.callout.do {
    background: rgba(25,135,84,0.06);
}
.callout.dont {
    background: rgba(220,53,69,0.06);
}
.callout .co-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.caption {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.quote-block {
    background: #fff;
    border-left: 4px solid var(--primary-color);
    padding: 16px 18px;
    margin: 18px 0;
    box-shadow: var(--shadow-soft);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.benefits-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    padding: 16px 18px;
    margin: 12px 0;
    box-shadow: var(--shadow-soft);
}

.benefits-card h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.benefits-card ul {
    margin: 0;
    padding-left: 16px;
}

.intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}

.cta-banner {
    background: #0a0a0a;
    color: #fff;
    border-radius: var(--border-radius);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: var(--shadow-soft);
    margin: 18px 0;
}

.cta-banner .cta-text {
    font-size: 1.1rem;
}

.cta-banner .cta-action {
    flex: 0 0 auto;
}

.cta-banner .btn-primary {
    background: var(--primary-color);
    color: #000;
}

.related-articles {
    margin-top: 24px;
}

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

.ra-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.ra-card img {
    width: 100%;
    display: block;
}

.ra-card .ra-title {
    padding: 12px 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.page-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin: 6px 0 20px;
}

.featured-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 18px;
}
.featured-card img {
    width: 100%;
    display: block;
}
.featured-card.featured-medium img {
    height: 300px;
    object-fit: cover;
    object-position: 50% 0%;
}
.featured-card .fc-content {
    padding: 14px 16px;
}
.featured-card.featured-medium .fc-content {
    padding: 18px 18px 20px;
}
.featured-card.featured-medium .fc-title {
    font-size: 1.45rem;
}
.featured-card.featured-medium .fc-excerpt {
    font-size: 1rem;
    line-height: 1.8;
}
.featured-card .fc-title a {
    color: var(--text-main);
}
.featured-card .fc-excerpt {
    color: var(--text-light);
    margin-top: 8px;
    margin-bottom: 10px;
}
.featured-card .fc-link {
    color: var(--primary-color);
    font-weight: 600;
}

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

@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .featured-card.featured-medium img {
        height: 220px;
    }
}
.sidebar-banner {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.sidebar-banner img {
    width: 100%;
    display: block;
}

.sidebar-banner .sb-content {
    padding: 16px 16px 20px;
    text-align: center;
}

.sidebar-banner .sb-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.sidebar-banner a {
    display: block;
}
.back-home {
    margin-top: 28px;
}
.back-home a {
    font-weight: 600;
}
.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.3px;
}
.back-home-link:hover {
    background: var(--primary-color);
    color: #fff;
}
/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the container */
    text-align: left;
    position: relative;
    padding-top: 150px; /* Add space at the top and push content down */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1); /* Very light overlay to show image clearly */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0;
}

/* Ensure container within hero takes full width to allow left alignment */
.hero .container {
    width: 100%;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
}

.gold-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    padding-right: 10px; /* Fix for italic cut-off */
}

/* Fallback for gold text on dark background (Hero) */
.hero .gold-text {
    background: none;
    -webkit-text-fill-color: var(--primary-color);
    color: var(--primary-color);
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
}

.hero-btns {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

/* Premium Buttons */
.btn-primary {
    background: #fff;
    color: var(--text-main);
    padding: 20px 60px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: var(--border-radius);
    border: none;
    transition: all 0.4s ease;
    min-width: 200px;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-large {
    padding: 22px 80px;
    font-size: 15px;
    min-width: 250px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 18px 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: var(--border-radius);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Sections General */
section {
    padding: 60px 0;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-heading);
    font-style: italic;
    letter-spacing: 1px;
}

/* Features Section */
.section-features {
    background: var(--bg-light);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.feature-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .icon {
    font-size: 45px;
    margin-bottom: 30px;
    display: inline-block;
}

.feature-card .icon i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* Steps Section */
.section-steps {
    background: #fff;
    text-align: center;
    padding-bottom: 20px;
}

.section-steps .subtitle {
    margin-bottom: 10px;
}

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

.step-card {
    padding: 0 20px;
    position: relative;
}

.step-number {
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.1); /* Very faint gold */
    font-family: var(--font-heading);
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.step-card p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Relationship Policy Section */
.section-relationship-policy {
    background: var(--bg-light);
    padding: 40px 0;
    overflow: hidden;
}

.policy-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.policy-text {
    flex: 1;
    text-align: left;
}

.policy-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.policy-text h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.2rem;
    color: #e74c3c; /* Red for emphasis on prohibition */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-text h3::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #e74c3c;
}

.policy-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.policy-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.policy-symbol {
    position: relative;
    width: 280px;
    height: 280px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.policy-symbol i.fa-hand-holding-usd {
    font-size: 8rem;
    color: #ddd;
    margin-bottom: 10px;
}

.policy-symbol i.fa-ban {
    position: absolute;
    font-size: 14rem;
    color: rgba(231, 76, 60, 0.85);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.visual-caption {
    position: absolute;
    bottom: -40px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .policy-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .policy-text {
        text-align: center;
    }
    
    .policy-text h3 {
        justify-content: center;
    }
}

/* Success Stories Section */
.section-success-stories {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.success-text {
    flex: 1;
    text-align: left;
}

.success-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.success-text .subtitle {
    text-align: left;
    margin-left: 0;
    font-style: normal;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 10px;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card .author {
    display: flex;
    flex-direction: column;
}

.testimonial-card .author .name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-card .author .location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.success-image {
    flex: 1;
}

.success-image img {
    width: 100%;
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius);
    transition: transform 0.4s ease;
}

.success-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .success-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .success-text {
        text-align: center;
    }
    
    .success-text .subtitle {
        text-align: center;
        margin: 0 auto 40px;
    }

    .testimonial-card {
        text-align: left;
    }
}

.section-faq {
    background: var(--bg-light);
    text-align: center;
}

.section-faq .subtitle {
    margin-bottom: 50px;
    max-width: 760px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--text-main);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex: 0 0 auto;
    margin-top: -2px;
}

.faq-item[open] summary::after {
    transform: rotate(-135deg);
}

.faq-item[open] summary {
    background: rgba(0,0,0,0.02);
}

.faq-answer {
    padding: 0 26px 22px;
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.faq-answer a {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(212, 175, 55, 0.5);
}

.faq-answer a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #888;
    padding: 100px 0 50px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-links a {
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

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

.copyright {
    font-size: 12px;
    opacity: 0.4;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 18px; /* Slightly smaller logo */
        letter-spacing: 2px;
    }
    
    .menu-toggle {
        display: inline-block;
    }
    
    .navbar .container {
        position: relative;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #0a0a0a;
        padding: 12px 20px;
        display: none;
        flex-direction: column;
        gap: 10px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 10px 4px;
    }

    .btn-nav {
        padding: 8px 15px;
        font-size: 11px;
    }

    .hero {
        padding-top: 100px; /* Reduce top padding on mobile */
        text-align: center; /* Center align hero content on mobile for better look */
        justify-content: center;
        background-position: 75% center; /* Shift background to show people on mobile */
    }

    .hero .container {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem; /* Smaller heading */
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center; /* Center buttons */
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px; /* Limit button width */
        padding: 15px 30px;
        font-size: 12px;
    }
    .article-title {
        font-size: 2rem;
    }
    .article-lead {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    .article-header {
        padding: 40px 0 10px;
    }
    .article-meta {
        font-size: 0.9rem;
    }
    .toc {
        padding: 12px 12px;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .intro-row {
        grid-template-columns: 1fr;
    }
    .ra-grid {
        grid-template-columns: 1fr;
    }

    /* Reduce section padding */
    section {
        padding: 60px 0;
    }

    .section-mobile {
        padding: 60px 0;
    }

    .mobile-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .mobile-text h2 {
        font-size: 2rem;
    }
    
    .mobile-features li {
        justify-content: center;
        font-size: 1rem;
    }
    
    .footer-logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .features-grid, .members-grid {
        gap: 30px;
    }

    .steps-grid {
        gap: 10px;
    }

    .faq-item summary {
        padding: 18px 18px;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
}

/* Featured Members Section */
.section-members {
    background: #fff;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 20px;
}

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

.member-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px; /* Fixed height for consistency */
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px); /* Strong blur effect */
    transition: transform 0.6s ease;
}

.member-card:hover .member-img {
    transform: scale(1.1);
}

/* Page Header & Content (Privacy Policy / Terms) */
.page-header {
    background-color: var(--text-main);
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
}
.page-content {
    padding: 60px 0;
    background: #fff;
    text-align: left;
}
.page-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}
.page-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}
.page-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-light);
}
.page-content li {
    margin-bottom: 10px;
}

.page-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
    margin-top: 0;
}

.online-status {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    background-color: #2ecc71;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
}

.member-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.member-overlay span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.member-info {
    padding: 25px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.member-card:hover .member-info {
    border-bottom-color: var(--primary-color);
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.member-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    cursor: pointer;
}

/* SEO / About Section */
.section-seo {
    background-color: #fff;
    padding-top: 0; /* Merging visually with members section */
    padding-bottom: 60px;
    text-align: center;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.seo-content h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.seo-content p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
}

.seo-content strong {
    color: var(--text-main);
    font-weight: 600;
}

.seo-btn-wrapper {
    text-align: center;
    margin-top: 60px;
}

.seo-btn-wrapper .btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 25px 80px;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.seo-btn-wrapper .btn-primary:hover {
    background: var(--text-main);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
