/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #740e0e;
    --secondary-color: #2c2c2c;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --hover-color: #5a0b0b;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* Header Styles */
.main-header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo img {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.main-nav a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.mobile-cta {
    display: none;
}

.desktop-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.desktop-cta:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg') center/cover;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Modern Perspective Section */
.perspective-content {
    max-width: 900px;
    margin: 0 auto;
}

.perspective-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.key-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Who Uses Section */
.user-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.user-type {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.user-type img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.user-type h3 {
    padding: 1.5rem 2rem 0.5rem;
    color: var(--primary-color);
}

.user-type p {
    padding: 0 2rem 2rem;
    text-align: left;
}

/* Why Choose Section */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.reason-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason-item p {
    text-align: start;
    line-height: 1.8;
}

/* Platform Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* How It Works Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.safety-reminder {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.safety-reminder h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.safety-reminder ul {
    list-style-position: inside;
    line-height: 2;
}

/* Terminology Section */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.term-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.term-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.term-item p {
    text-align: start;
    line-height: 1.8;
}

/* Featured Profiles Section */
.featured-profiles {
    background-color: var(--light-bg);
}

.profile-category {
    text-align: center;
    margin: 3rem 0 2rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.profile-info {
    padding: 1.5rem;
}

.profile-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.location {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lifestyle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.goal {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
}

.disclaimer {
    text-align: center;
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

/* City Hub Section */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.city-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.city-content {
    padding: 1.5rem;
}

.city-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.city-content p {
    text-align: start;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* City Safety Grid - 2 per row on PC */
.city-safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.city-safety-grid .city-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.city-safety-grid .city-card:hover {
    transform: translateY(-5px);
}

.city-safety-grid .city-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.city-safety-grid .city-card h3 {
    color: var(--primary-color);
    margin: 1.5rem 1.5rem 1rem;
    font-size: 1.5rem;
}

.city-safety-grid .city-card p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive for tablets - 2 per row */
@media (max-width: 768px) {
    .city-safety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive for mobile - 1 per row */
@media (max-width: 480px) {
    .city-safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Membership Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    border: 3px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.plan-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
}

.plan-button:hover {
    background-color: var(--hover-color);
}

/* Privacy & Safety Section */
.safety-content {
    display: grid;
    gap: 2rem;
}

.safety-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.safety-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.safety-item p {
    text-align: start;
    line-height: 1.8;
}

/* Success Stories Section */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.story-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-card h3 {
    padding: 1.5rem 2rem 0.5rem;
    color: var(--primary-color);
}

.story-card p {
    padding: 0 2rem 2rem;
    text-align: start;
    line-height: 1.8;
}

/* App Section */
.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.app-features {
    margin: 2rem 0;
}

.app-feature {
    margin-bottom: 1.5rem;
}

.app-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.app-download {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
}

.app-button:hover {
    background-color: var(--primary-color);
}

.app-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.app-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    margin-bottom: 0.5rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.read-more:hover {
    color: var(--hover-color);
}

.blog-cta {
    text-align: center;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    text-align: start;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta,
.cta-mid {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/dating.jpg') center/cover;
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.final-cta h2,
.cta-mid h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p,
.cta-mid p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-button-large:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

/* Footer Styles */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo img {
    width: 35px;
    height: 35px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: #ccc;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .header-content {
        position: relative;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .mobile-cta {
        display: block;
        margin-top: 0.5rem;
    }
    
    .mobile-cta a {
        display: block;
        background-color: var(--primary-color);
        color: var(--white);
        padding: 1rem;
        border-radius: 5px;
        text-align: center;
        font-weight: 600;
    }
    
    .mobile-cta a:hover {
        background-color: var(--hover-color);
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--secondary-color);
        width: 280px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow);
        border-radius: 0 0 10px 10px;
    }
    
    .main-nav.active {
        max-height: 500px;
        padding: 1rem 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 1rem;
    }
    
    .main-nav li {
        border-bottom: 1px solid #444;
        width: 100%;
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .user-types {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid,
    .features-grid,
    .terms-grid,
    .profiles-grid,
    .plans-grid,
    .stories-grid,
    .blog-grid,
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .app-images {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo img {
        width: 30px;
        height: 30px;
    }
    
    .main-nav {
        width: 250px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .main-header,
    .hero-cta,
    .cta-button,
    .plan-button,
    .app-download,
    .final-cta,
    .main-footer {
        display: none;
    }
    
    body {
        color: #000;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(116,14,14,0.85), rgba(116,14,14,0.85)), url('images/hero-bg.jpg') center/cover;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Section */
.intro-section {
    padding: 4rem 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.intro-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.intro-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Types Section */
.types-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.type-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.type-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.type-card p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* Comparison Table */
.comparison-table {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.city-comparison {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.city-comparison thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.city-comparison th,
.city-comparison td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.city-comparison th {
    font-weight: 600;
}

.city-comparison tbody tr:hover {
    background-color: var(--light-bg);
}

.city-comparison tbody tr:last-child td {
    border-bottom: none;
}

.table-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Profile Cards */
.profile-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profile-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.profile-info {
    padding: 1.5rem;
}

.profile-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.profile-info .location {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-info .profession {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.profile-info .lifestyle,
.profile-info .looking-for,
.profile-info .offers {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.profile-cta {
    text-align: center;
    margin-top: 3rem;
}

.profile-cta .disclaimer {
    margin-bottom: 1.5rem;
    color: #666;
    font-style: italic;
}

/* Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tip-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-card p {
    line-height: 1.7;
}

/* Benefits Section */
.benefits-content {
    display: grid;
    gap: 3rem;
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-item:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.benefit-item:nth-child(even) img {
    order: 2;
}

.benefit-item img {
    width: 100%;
    border-radius: 10px;
}

.benefit-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-text p {
    line-height: 1.7;
}

/* Expectations Section */
.expectations-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.expectation-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.expectation-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expectation-item p {
    line-height: 1.7;
}

/* Responsive for new elements */
@media (max-width: 1024px) {
    .types-content {
        grid-template-columns: 1fr;
    }
    
    .benefit-item,
    .benefit-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .benefit-item:nth-child(even) img {
        order: 0;
    }
}

@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .tips-grid,
    .expectations-list {
        grid-template-columns: 1fr;
    }
    
    .city-comparison {
        font-size: 0.85rem;
    }
    
    .city-comparison th,
    .city-comparison td {
        padding: 0.75rem 0.5rem;
    }
}

/* App Screenshots Section */
.app-screenshots {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot-item {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.screenshot-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.screenshot-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* PC: 4 items per row */
@media (min-width: 992px) {
    .screenshots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet: 2 items per row */
@media (min-width: 768px) and (max-width: 991px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 item per row */
@media (max-width: 767px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot-item img {
        height: 350px;
    }
}

/* Download Section */
.download-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.download-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.download-method {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.download-method img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 1.5rem;
}

.download-method h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.download-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.download-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin-top: 3rem;
    border-radius: 5px;
}

.download-note p {
    margin-bottom: 0;
    color: #856404;
}

/* Membership Section */
.membership-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.membership-comparison {
    overflow-x: auto;
    margin: 2rem 0;
}

.membership-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.membership-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.membership-table th,
.membership-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.membership-table th {
    font-weight: 600;
    text-align: center;
}

.membership-table td {
    text-align: center;
}

.membership-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.membership-table tbody tr:hover {
    background-color: #f5f5f5;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.membership-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-5px);
}

.membership-card.featured {
    border: 3px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.membership-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.membership-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.membership-card .price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.membership-card ul {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.membership-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.membership-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.membership-card ul li:last-child {
    border-bottom: none;
}

/* How to Use Section */
.how-to-use {
    padding: 4rem 0;
    background-color: var(--white);
}

.usage-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.usage-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.usage-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.usage-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.usage-step p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* App Benefits Section */
.app-benefits {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* App Tips Section */
.app-tips {
    padding: 4rem 0;
    background-color: var(--white);
}

@media (max-width: 768px) {
    .download-methods {
        grid-template-columns: 1fr;
    }
    
    .membership-cards {
        grid-template-columns: 1fr;
    }
    
    .usage-step {
        flex-direction: column;
        text-align: center;
    }
    
    .usage-icon {
        margin: 0 auto;
    }
}

/* Australian Cities Page Styles */
.cities-overview {
    padding: 4rem 0;
    background-color: var(--white);
}

.city-details {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.city-detail-card {
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.city-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
}

.city-detail-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.city-detail-text h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.city-detail-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.city-detail-text p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* City Features Section */
.city-features {
    padding: 4rem 0;
    background-color: var(--white);
}

/* City Comparison Section */
.city-comparison {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.comparison-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-card ul li:last-child {
    border-bottom: none;
}

/* Responsive Design for Cities Page */
@media (max-width: 992px) {
    .city-detail-content {
        grid-template-columns: 1fr;
    }
    
    .city-detail-content img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .city-detail-text h3 {
        font-size: 1.5rem;
    }
}

/* Pricing Page Styles */
.pricing-plans {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pricing-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.pricing-content h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-header {
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.plan-header h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-display .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-display .period {
    font-size: 1.25rem;
    color: #666;
}

.total-price {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.savings {
    font-size: 0.95rem;
    color: #28a745;
    font-weight: 600;
    margin-top: 0.5rem;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.75rem;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Chairman Membership */
.chairman-plan {
    max-width: 900px;
    margin: 0 auto;
}

.chairman-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    color: var(--white);
}

.chairman-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
    color: #1a1a1a;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.chairman-card .plan-header {
    border-bottom-color: rgba(255,255,255,0.2);
}

.chairman-card .plan-header h4 {
    color: var(--white);
}

.chairman-card .price-display .price {
    color: #d4af37;
}

.chairman-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.chairman-features h5 {
    color: #d4af37;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.chairman-features ul {
    list-style: none;
}

.chairman-features ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    padding-left: 1.75rem;
}

.chairman-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
    font-size: 1.25rem;
}

.chairman-features ul li:last-child {
    border-bottom: none;
}

/* Comparison Table */
.comparison-table-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.feature-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.feature-comparison-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.feature-comparison-table th,
.feature-comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.feature-comparison-table th {
    font-weight: 600;
}

.feature-comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.feature-comparison-table tbody tr:hover {
    background-color: #f5f5f5;
}

/* Why Premium Section */
.why-premium {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item .feature-icon {
    order: 1;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    order: 2;
    font-size: 1.25rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.benefit-item p {
    order: 3;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* How to Upgrade Section */
.how-to-upgrade {
    padding: 4rem 0;
    background-color: var(--white);
}

.upgrade-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.upgrade-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.upgrade-step .step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.upgrade-step .step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.upgrade-step .step-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Pricing FAQ Section */
.pricing-faq {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
    margin-bottom: 0;
}

.cta-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Design for Pricing Page */
@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .chairman-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
    }
    
    .pricing-tab {
        width: 100%;
    }
    
    .upgrade-step {
        flex-direction: column;
        text-align: center;
    }
    
    .upgrade-step .step-number {
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .chairman-card {
        padding: 2rem 1.5rem;
    }
}

/* Emergency Resources Section */
.emergency-resources {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.emergency-resources h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.resources-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.resource-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.resource-section ul {
    list-style: none;
    padding: 0;
}

.resource-section ul li {
    padding: 0.75rem 0;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.resource-section ul li:last-child {
    border-bottom: none;
}

.resource-section ul li strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.25rem;
}

/* Responsive for Emergency Resources */
@media (max-width: 992px) {
    .resources-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .resources-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .emergency-resources h2 {
        font-size: 2rem;
    }
}

/* Safety Checklist Section */
.safety-checklist {
    background: var(--white);
    padding: 4rem 0;
}

.safety-checklist h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.checklist-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.checklist-column {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checklist-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.checklist-column h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.checklist-column ul.checklist {
    list-style: none;
    padding: 0;
}

.checklist-column ul.checklist li {
    padding: 0.75rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.checklist-column ul.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive for Safety Checklist */
@media (max-width: 1200px) {
    .checklist-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .checklist-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .safety-checklist h2 {
        font-size: 2rem;
    }
    
    .checklist-column {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .checklist-column h3 {
        font-size: 1.1rem;
    }
    
    .checklist-column ul.checklist li {
        font-size: 0.9rem;
        padding: 0.5rem 0 0.5rem 1.5rem;
    }
}

/* App Services Section - 4 per row on PC */
.app-services .services-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.app-services .service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.app-services .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.app-services .service-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
}

.app-services .service-card p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Responsive for App Services */
@media (max-width: 1200px) {
    .app-services .services-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .app-services .services-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Sydney Demographics Section */
.sydney-demographics {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.sydney-demographics h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.sydney-demographics .demo-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sydney-demographics .demo-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sydney-demographics .demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sydney-demographics .demo-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.sydney-demographics .demo-info {
    padding: 2rem;
}

.sydney-demographics .demo-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.sydney-demographics .demo-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.sydney-demographics .demo-info p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive for Sydney Demographics */
@media (max-width: 992px) {
    .sydney-demographics .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sydney-demographics h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .sydney-demographics .demo-card img {
        height: 250px;
    }
    
    .sydney-demographics .demo-info {
        padding: 1.5rem;
    }
    
    .sydney-demographics .demo-info h3 {
        font-size: 1.5rem;
    }
}

/* Sydney Best Venues Section */
.best-venues {
    background: var(--white);
    padding: 4rem 0;
}

.best-venues h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.best-venues .venues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.best-venues .venue-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.best-venues .venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.best-venues .venue-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.best-venues .venue-card ul {
    list-style: none;
    padding: 0;
}

.best-venues .venue-card ul li {
    padding: 0.75rem 0;
    line-height: 1.7;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.best-venues .venue-card ul li:last-child {
    border-bottom: none;
}

.best-venues .venue-card ul li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive for Best Venues */
@media (max-width: 992px) {
    .best-venues .venues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .best-venues h2 {
        font-size: 2rem;
    }
    
    .best-venues .venue-card {
        padding: 1.5rem;
    }
}

/* Sydney Suburbs Section */
.sydney-suburbs {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.sydney-suburbs h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.sydney-suburbs .suburbs-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sydney-suburbs .suburb-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sydney-suburbs .suburb-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.sydney-suburbs .suburb-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.sydney-suburbs .suburb-item p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.sydney-suburbs .suburb-item p strong {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive for Sydney Suburbs */
@media (max-width: 992px) {
    .sydney-suburbs .suburbs-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sydney-suburbs h2 {
        font-size: 2rem;
    }
    
    .sydney-suburbs .suburb-item {
        padding: 1.5rem;
    }
}

/* App Premium Membership Section */
.premium-membership {
    background: var(--white);
    padding: 4rem 0;
}

.premium-membership h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.premium-membership .section-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.premium-membership .premium-comparison {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.premium-membership .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.premium-membership .comparison-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.premium-membership .comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.premium-membership .comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.premium-membership .comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.premium-membership .premium-cta {
    text-align: center;
    margin-top: 3rem;
}

.premium-membership .premium-cta h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.premium-membership .pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.premium-membership .price-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-membership .price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.premium-membership .price-card.featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

.premium-membership .price-card.featured .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.premium-membership .price-card h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.premium-membership .price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.premium-membership .price-card .per-month {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.premium-membership .price-card .savings {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.premium-membership .pricing-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive for Premium Membership */
@media (max-width: 992px) {
    .premium-membership .pricing-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* App Download Instructions Section */
.download-instructions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.download-instructions h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.download-instructions .download-guides {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.download-instructions .download-guide {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.download-instructions .download-guide h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.download-instructions .instruction-steps {
    margin-bottom: 2rem;
}

.download-instructions .instruction-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.download-instructions .instruction-step:last-child {
    border-bottom: none;
}

.download-instructions .step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-instructions .step-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.download-instructions .step-content h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.download-instructions .step-content p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.download-instructions .step-content p strong {
    color: var(--primary-color);
}

.download-instructions .download-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 1.5rem;
}

.download-instructions .download-note p {
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.download-instructions .download-note p strong {
    color: var(--secondary-color);
}

/* Responsive for Download Instructions */
@media (max-width: 992px) {
    .download-instructions .download-guides {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .download-instructions h2 {
        font-size: 2rem;
    }
    
    .download-instructions .download-guide {
        padding: 1.5rem;
    }
    
    .download-instructions .instruction-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-instructions .step-icon {
        width: 50px;
        height: 50px;
    }
}

/* App vs Website Comparison Section */
.app-vs-web {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.app-vs-web h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.app-vs-web .table-responsive {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.app-vs-web .comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.app-vs-web .comparison-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.app-vs-web .comparison-table thead th {
    padding: 1.5rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.app-vs-web .comparison-table thead th:last-child {
    border-right: none;
}

.app-vs-web .comparison-table tbody td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.app-vs-web .comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
    background: #f8f9fa;
}

.app-vs-web .comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.app-vs-web .comparison-table tbody tr:hover td:first-child {
    background: #e9ecef;
}

.app-vs-web .comparison-table tbody td strong {
    color: var(--secondary-color);
}

/* Checkmarks and X marks styling */
.app-vs-web .comparison-table tbody td:nth-child(2) {
    color: #28a745;
}

.app-vs-web .comparison-table tbody td:nth-child(3) {
    color: var(--text-color);
}

.app-vs-web .comparison-note {
    text-align: center;
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    border-radius: 5px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.app-vs-web .comparison-note strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive for App vs Web */
@media (max-width: 768px) {
    .app-vs-web h2 {
        font-size: 2rem;
    }
    
    .app-vs-web .table-responsive {
        padding: 1rem;
    }
    
    .app-vs-web .comparison-table thead th,
    .app-vs-web .comparison-table tbody td {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .app-vs-web .comparison-note {
        padding: 1rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .app-vs-web h2 {
        font-size: 2rem;
    }
}

/* Sugar Baby Benefits Section - 4 per row on PC */
.benefits-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefits-section .benefit-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-section .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.benefits-section .benefit-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefits-section .benefit-content {
    padding: 1.5rem;
}

.benefits-section .benefit-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefits-section .benefit-content p {
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Responsive for Benefits Section */
@media (max-width: 1200px) {
    .benefits-section .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-section .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-section .benefit-item img {
        height: 180px;
    }
    
    .benefits-section .benefit-content {
        padding: 1.25rem;
    }
}

/* Sugar Daddy Benefits Section - 4 per row on PC */
.benefits-section .benefits-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefits-section .benefit-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-section .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.benefits-section .benefit-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefits-section .benefit-text {
    padding: 1.5rem;
}

.benefits-section .benefit-text h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefits-section .benefit-text p {
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Responsive for Sugar Daddy Benefits Section */
@media (max-width: 1200px) {
    .benefits-section .benefits-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-section .benefits-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-section .benefit-item img {
        height: 180px;
    }
    
    .benefits-section .benefit-text {
        padding: 1.25rem;
    }
}

/* Meeting in Person: Essential Safety Guidelines Section */
.offline-safety {
    background: var(--white);
    padding: 4rem 0;
}

.offline-safety h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.offline-safety .meeting-safety {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.offline-safety .safety-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offline-safety .safety-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.offline-safety .safety-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.offline-safety .safety-section ul {
    list-style: none;
    padding: 0;
}

.offline-safety .safety-section ul li {
    padding: 0.75rem 0;
    line-height: 1.7;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.offline-safety .safety-section ul li:last-child {
    border-bottom: none;
}

.offline-safety .safety-section ul li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive for Meeting in Person */
@media (max-width: 992px) {
    .offline-safety .meeting-safety {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .offline-safety h2 {
        font-size: 2rem;
    }
    
    .offline-safety .safety-section {
        padding: 1.5rem;
    }
}

/* Financial Safety for Sugar Dating Section */
.financial-safety {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.financial-safety h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.financial-safety .financial-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.financial-safety .financial-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financial-safety .financial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.financial-safety .financial-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.financial-safety .financial-content {
    padding: 2rem;
}

.financial-safety .financial-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.financial-safety .financial-content ul {
    list-style: none;
    padding: 0;
}

.financial-safety .financial-content ul li {
    padding: 1rem 0;
    line-height: 1.8;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.financial-safety .financial-content ul li:last-child {
    border-bottom: none;
}

.financial-safety .financial-content ul li::before {
    content: '💰';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.financial-safety .financial-content ul li strong {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive for Financial Safety */
@media (max-width: 992px) {
    .financial-safety .financial-tips {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .financial-safety h2 {
        font-size: 2rem;
    }
    
    .financial-safety .financial-card img {
        height: 200px;
    }
    
    .financial-safety .financial-content {
        padding: 1.5rem;
    }
    
    .financial-safety .financial-content h3 {
        font-size: 1.5rem;
    }
}

/* Common Scams and How to Avoid Them Section */
.scam-awareness {
    background: var(--white);
    padding: 4rem 0;
}

.scam-awareness h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.scam-awareness .scams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.scam-awareness .scam-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dc3545;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scam-awareness .scam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.scam-awareness .scam-card h3 {
    color: #dc3545;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dc3545;
}

.scam-awareness .scam-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.scam-awareness .scam-card p strong {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive for Scam Awareness */
@media (max-width: 1200px) {
    .scam-awareness .scams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .scam-awareness .scams-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scam-awareness h2 {
        font-size: 2rem;
    }
    
    .scam-awareness .scam-card {
        padding: 1.5rem;
    }
    
    .scam-awareness .scam-card h3 {
        font-size: 1.2rem;
    }
}


/* Melbourne Demographics Section */
.melbourne-demographics {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.melbourne-demographics .demo-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.melbourne-demographics .demo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.melbourne-demographics .demo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(116, 14, 14, 0.2);
}

.melbourne-demographics .demo-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.melbourne-demographics .demo-info {
    padding: 30px;
}

.melbourne-demographics .demo-info h3 {
    color: #740e0e;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 3px solid #740e0e;
    padding-bottom: 10px;
}

.melbourne-demographics .demo-info p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #333;
}

.melbourne-demographics .demo-info strong {
    color: #740e0e;
    font-weight: 600;
}

/* Melbourne Suburbs Section */
.melbourne-suburbs {
    padding: 80px 0;
    background: white;
}

.melbourne-suburbs .suburbs-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.melbourne-suburbs .suburb-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #740e0e;
    transition: all 0.3s ease;
}

.melbourne-suburbs .suburb-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.melbourne-suburbs .suburb-item h3 {
    color: #740e0e;
    font-size: 24px;
    margin-bottom: 15px;
}

.melbourne-suburbs .suburb-item p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #333;
}

.melbourne-suburbs .suburb-item strong {
    color: #740e0e;
    font-weight: 600;
}

/* Responsive Design for Melbourne Sections */
@media (max-width: 968px) {
    .melbourne-demographics .demo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .melbourne-suburbs .suburbs-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .melbourne-demographics {
        padding: 60px 0;
    }
    
    .melbourne-demographics .demo-card img {
        height: 250px;
    }
    
    .melbourne-demographics .demo-info {
        padding: 25px;
    }
    
    .melbourne-demographics .demo-info h3 {
        font-size: 24px;
    }
    
    .melbourne-suburbs {
        padding: 60px 0;
    }
    
    .melbourne-suburbs .suburb-item {
        padding: 25px;
    }
    
    .melbourne-suburbs .suburb-item h3 {
        font-size: 20px;
    }
}


/* Melbourne Discreet Culture Section */
.discreet-culture {
    padding: 80px 0;
    background: white;
}

.discreet-culture .culture-content {
    margin-top: 30px;
}

.discreet-culture .culture-text h3 {
    color: #740e0e;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.discreet-culture .culture-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-section .comparison-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.comparison-section .comparison-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #740e0e;
    transition: all 0.3s ease;
}

.comparison-section .comparison-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.comparison-section .comparison-item h3 {
    color: #740e0e;
    font-size: 24px;
    margin-bottom: 15px;
}

.comparison-section .comparison-item p {
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333;
}

.comparison-section .comparison-item strong {
    color: #740e0e;
    font-weight: 600;
}

/* Allowance Support Section */
.allowance-support {
    padding: 80px 0;
    background: white;
}

.allowance-support .support-content {
    margin-top: 30px;
}

.allowance-support h3 {
    color: #740e0e;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.allowance-support .benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.allowance-support .benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid #740e0e;
}

.allowance-support .benefit-item h4 {
    color: #740e0e;
    font-size: 20px;
    margin-bottom: 10px;
}

.allowance-support .benefit-item p {
    line-height: 1.8;
    color: #333;
}

.allowance-support .support-note {
    margin-top: 30px;
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #740e0e;
    border-radius: 8px;
    font-style: italic;
    color: #333;
}

/* Partner Selection Section */
.partner-selection {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partner-selection .selection-content > p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.partner-selection .selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.partner-selection .selection-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.partner-selection .selection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(116, 14, 14, 0.15);
}

.partner-selection .selection-item h3 {
    color: #740e0e;
    font-size: 20px;
    margin-bottom: 12px;
}

.partner-selection .selection-item p {
    line-height: 1.8;
    color: #333;
}

.partner-selection .selection-note {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-left: 4px solid #740e0e;
    border-radius: 8px;
    font-style: italic;
    color: #333;
}

/* Common Mistakes Section */
.common-mistakes {
    padding: 80px 0;
    background: white;
}

.common-mistakes .mistakes-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.common-mistakes .mistake-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #740e0e;
    transition: all 0.3s ease;
}

.common-mistakes .mistake-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.common-mistakes .mistake-item h3 {
    color: #740e0e;
    font-size: 22px;
    margin-bottom: 15px;
}

.common-mistakes .mistake-item p {
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333;
}

.common-mistakes .mistake-item strong {
    color: #740e0e;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

/* Why SugarDaddyMeet Section */
.why-sugardaddymeet {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-sugardaddymeet .platform-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-sugardaddymeet .benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-sugardaddymeet .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(116, 14, 14, 0.2);
}

.why-sugardaddymeet .benefit-card h3 {
    color: #740e0e;
    font-size: 22px;
    margin-bottom: 15px;
}

.why-sugardaddymeet .benefit-card p {
    line-height: 1.8;
    color: #333;
}

/* Starting Guide Section */
.starting-guide {
    padding: 80px 0;
    background: white;
}

.starting-guide .guide-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.starting-guide .guide-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #740e0e;
    transition: all 0.3s ease;
}

.starting-guide .guide-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.starting-guide .guide-item h3 {
    color: #740e0e;
    font-size: 22px;
    margin-bottom: 15px;
}

.starting-guide .guide-item p {
    line-height: 1.8;
    color: #333;
}

.starting-guide .guide-conclusion {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #740e0e 0%, #5a0b0b 100%);
    color: white;
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

/* Responsive Design for New Melbourne Sections */
@media (max-width: 968px) {
    .comparison-section .comparison-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .allowance-support .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-selection .selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .common-mistakes .mistakes-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-sugardaddymeet .platform-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .starting-guide .guide-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .discreet-culture {
        padding: 60px 0;
    }
    
    .comparison-section {
        padding: 60px 0;
    }
    
    .allowance-support {
        padding: 60px 0;
    }
    
    .partner-selection {
        padding: 60px 0;
    }
    
    .partner-selection .selection-grid {
        grid-template-columns: 1fr;
    }
    
    .common-mistakes {
        padding: 60px 0;
    }
    
    .why-sugardaddymeet {
        padding: 60px 0;
    }
    
    .why-sugardaddymeet .platform-benefits {
        grid-template-columns: 1fr;
    }
    
    .starting-guide {
        padding: 60px 0;
    }
    
    .starting-guide .guide-conclusion {
        padding: 20px;
        font-size: 16px;
    }
}

/* Profile Detail Styling for Better Readability */
.sydney-demographics .profile-detail {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sydney-demographics .profile-detail:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.sydney-demographics .profile-detail h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sydney-demographics .profile-detail p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Mobile Optimization for Profile Details */
@media (max-width: 768px) {
    .sydney-demographics .profile-detail {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .sydney-demographics .profile-detail h4 {
        font-size: 1rem;
    }
    
    .sydney-demographics .profile-detail p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .sydney-demographics .profile-detail {
        padding: 0.875rem;
        border-left-width: 3px;
    }
    
    .sydney-demographics .profile-detail h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
}


/* ========================================
   Blog Article Styles - Unique Design
   ======================================== */

.blog-article {
    background: #f8f9fa;
    padding: 3rem 0;
    min-height: 100vh;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    text-align: center;
}

.blog-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.95rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date::before {
    content: "📅";
}

.blog-reading-time::before {
    content: "⏱️";
}

.blog-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.blog-featured-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-section {
    margin-bottom: 3rem;
}

.blog-section:last-child {
    margin-bottom: 0;
}

.blog-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
    text-align: left;
}

.blog-section h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-section p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    font-size: 1.05rem;
}

.blog-section p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.blog-inline-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-highlight:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(116, 14, 14, 0.15);
}

.feature-highlight h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.feature-highlight p {
    margin-bottom: 0;
    line-height: 1.7;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.blog-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.blog-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.blog-table tbody tr:hover {
    background: #f8f9fa;
}

.blog-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0b0b 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 30px rgba(116, 14, 14, 0.3);
}

.blog-cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.faq-container {
    margin-top: 2rem;
}

.faq-item-blog {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item-blog:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.faq-item-blog h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.faq-item-blog p {
    margin-bottom: 0;
    line-height: 1.7;
    color: var(--text-color);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-header {
        padding: 2rem 1.5rem;
    }
    
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-meta {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .blog-content {
        padding: 2rem 1.5rem;
    }
    
    .blog-section h2 {
        font-size: 1.6rem;
    }
    
    .blog-section h3 {
        font-size: 1.3rem;
    }
    
    .blog-section p {
        font-size: 1rem;
    }
    
    .feature-highlight {
        padding: 1.25rem;
    }
    
    .blog-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .blog-cta-box h3 {
        font-size: 1.5rem;
    }
    
    .blog-table {
        font-size: 0.9rem;
    }
    
    .blog-table th,
    .blog-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-container {
        padding: 0 15px;
    }
    
    .blog-header {
        padding: 1.5rem 1rem;
    }
    
    .blog-header h1 {
        font-size: 1.5rem;
    }
    
    .blog-content {
        padding: 1.5rem 1rem;
    }
    
    .blog-section h2 {
        font-size: 1.4rem;
    }
    
    .feature-highlight {
        padding: 1rem;
    }
    
    .blog-cta-box {
        padding: 1.5rem 1rem;
    }
    
    .blog-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}


/* ========================================
   Blog List Page Styles
   ======================================== */

.blog-list-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0b0b 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.blog-list-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-list-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

.blog-list-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--white);
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-coming-soon {
    opacity: 0.7;
}

.blog-card-coming-soon:hover {
    transform: translateY(-4px);
}

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-card-date::before {
    content: "📅 ";
}

.blog-card-reading-time::before {
    content: "⏱️ ";
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.blog-card-tags .tag {
    background: #f0f0f0;
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 0.5rem;
}

.blog-card-link-disabled {
    color: #999;
    cursor: not-allowed;
}

.blog-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.blog-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.blog-cta-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.blog-cta-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Active navigation link */
.main-nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Blog List Styles */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-list-hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-list-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-categories {
        gap: 0.75rem;
    }
    
    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
    
    .blog-cta-content h2 {
        font-size: 2rem;
    }
    
    .blog-cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .blog-list-hero {
        padding: 3rem 0 2rem;
    }
    
    .blog-list-hero h1 {
        font-size: 1.8rem;
    }
    
    .blog-list-subtitle {
        font-size: 1rem;
    }
    
    .blog-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
    }
    
    .blog-card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-cta-content h2 {
        font-size: 1.6rem;
    }
}
