/* Global Styles */
:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #333; /* Dark Grey */
    --accent-color: #e91e63; /* Pinkish Red for accents/buttons */
    --text-color: #444;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #c2185b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--accent-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-color);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* How It Works */
.how-it-works {
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Custom layout for Index Page "How It Works" */
.how-it-works .steps-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

.how-it-works .step-card {
    width: auto;
    height: 100%;
}

/* First 3 items take 2 columns each (1/3 width) */
.how-it-works .step-card:nth-child(1),
.how-it-works .step-card:nth-child(2),
.how-it-works .step-card:nth-child(3) {
    grid-column: span 2;
}

/* Last 2 items take 3 columns each (1/2 width) */
.how-it-works .step-card:nth-child(4),
.how-it-works .step-card:nth-child(5) {
    grid-column: span 3;
}

@media (max-width: 992px) {
    .how-it-works .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-it-works .step-card:nth-child(n) {
        grid-column: span 1;
    }
    /* Center the last item on tablet */
    .how-it-works .step-card:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .how-it-works .steps-container {
        grid-template-columns: 1fr;
    }
    .how-it-works .step-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
}

/* Featured Cities */
.cities {
    background-color: var(--light-bg);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.city-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block; /* Ensures anchor tags behave as block elements */
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: var(--white);
}

.city-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Profiles */
.profiles {
    background-color: var(--white);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.profile-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-img {
    height: 300px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details {
    padding: 20px;
    text-align: center;
}

.profile-details h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.profile-details p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Optimized Styles for Featured Profiles in Index */
.profiles .profile-card {
    padding: 30px 20px;
    text-align: center;
}

.profiles .profile-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.profiles .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profiles .profile-details {
    padding: 0;
}

.profiles .profile-details h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.profiles .profile-details p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Features/Why Choose Us */
.features {
    background-color: #222;
    color: var(--white);
}

.features .section-title {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    fill: var(--primary-color);
}

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Pricing */
.pricing {
    background-color: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Ensure Index Page Pricing has 3 columns on PC */
.pricing .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .pricing .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.price-features li {
    margin-bottom: 10px;
    color: #555;
}

/* Blog */
.blog {
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blog-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.9rem;
}

/* App Section */
.app-section {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    padding: 60px 0;
}

.app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-content {
    flex: 1;
    padding-right: 50px;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-height: 500px;
    display: inline-block;
}

/* Success Stories */
.stories {
    background-color: var(--light-bg);
}

/* Base Story Card (Shared) */
.story-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

/* Index Page Specific Stories Styling */
.stories .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stories .story-card {
    margin-bottom: 0;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.stories .story-card:hover {
    transform: translateY(-5px);
}

.stories .story-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.stories .story-header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    margin-right: 0;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stories .story-author h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.stories .story-content {
    text-align: center;
}

.stories .story-content p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero-bg1.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #222;
    color: #bbb;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
        text-align: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-grid, .app-container {
        grid-template-columns: 1fr;
        display: block;
    }
    
    .app-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
}

/* Benefits Section */
.benefits-section {
    margin-top: 50px;
    text-align: left;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #333;
}

.benefits-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefits-grid h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefits-grid ul {
    list-style: disc;
    margin-left: 20px;
    line-height: 1.8;
}

.benefits-grid li strong {
    font-weight: bold;
}

/* PC Layout Fixes */
@media (min-width: 1024px) {
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* How It Works Page Styles */
.hiw-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.hiw-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hiw-hero p {
    font-size: 1.5rem;
}

.hiw-section {
    padding: 80px 0;
}

.hiw-section:nth-child(even) {
    background-color: #f9f9f9;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hiw-grid:last-child {
    margin-bottom: 0;
}

.hiw-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hiw-img img:hover {
    transform: translateY(-5px);
}

.hiw-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hiw-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.hiw-content h3:first-child {
    margin-top: 0;
}

.hiw-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.hiw-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.hiw-content a:hover {
    text-decoration: underline;
}

.hiw-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.hiw-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Responsive adjustments for HIW page */
@media (max-width: 768px) {
    .hiw-hero {
        padding: 100px 0 60px;
    }

    .hiw-hero h1 {
        font-size: 2rem;
    }

    .hiw-hero p {
        font-size: 1.2rem;
    }

    .hiw-section {
        padding: 50px 0;
    }

    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hiw-content h2 {
        font-size: 2rem;
    }

    .hiw-content h3 {
        font-size: 1.5rem;
    }
}

/* HIW Enhanced Styles */
.hiw-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.hiw-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
}

.hiw-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.hiw-table-container {
    overflow-x: auto;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.hiw-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

.hiw-table th, .hiw-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.hiw-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hiw-table tr:hover {
    background-color: #f9f9f9;
}

.hiw-table tr:last-child td {
    border-bottom: none;
}

.hiw-step-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.hiw-step-box:hover {
    transform: translateY(-5px);
}

.hiw-tip-box {
    background-color: #f0f8ff;
    border-left: 4px solid #007bff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.hiw-tip-box strong {
    color: #0056b3;
    display: block;
    margin-bottom: 5px;
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pricing-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pricing-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.pricing-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Centered Content Modifier */
.pricing-content.centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    grid-column: 1 / -1; /* Span full width in grid */
}

.pricing-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: #666;
}

.feature-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.disadvantage-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.disadvantage-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.disadvantage-list li::before {
    content: '✕';
    color: #dc3545;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.plans-container {
    margin-top: 50px;
}

.plan-category h3 {
    text-align: center;
    font-size: 2rem;
    margin: 40px 0 15px;
    color: var(--secondary-color);
}

.plan-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.mt-large {
    margin-top: 80px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.plans-grid.single-plan {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.plan-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.plan-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-card.premium-gold {
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    max-width: 450px;
    width: 100%;
}

.plan-card.premium-gold:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25);
    transform: translateY(-5px);
}

.popular-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 5px 0;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.plan-header {
    padding: 30px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.plan-card.premium-gold .plan-header {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #fff;
}

.plan-header h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.plan-card.premium-gold .plan-header h4 {
    color: #fff;
}

.plan-header .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.plan-card.premium-gold .plan-header .price {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.plan-header .period {
    color: #777;
    font-size: 1rem;
}

.plan-card.premium-gold .plan-header .period {
    color: rgba(255,255,255,0.9);
}

.plan-header .total-price {
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
}

.plan-body {
    padding: 30px 20px;
}

.plan-body p {
    color: #666;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.plan-features li:last-child {
    border-bottom: none;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    gap: 20px;
    text-align: center;
}

.step-item {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #eee;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.step-text strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.step-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.troubleshooting-box {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: left;
}

.troubleshooting-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #856404;
}

.troubleshooting-box ul {
    margin: 0;
    padding-left: 20px;
}

.troubleshooting-box li {
    margin-bottom: 10px;
}

.payment-trust {
    text-align: center;
    margin-top: 30px;
    color: #666;
}

.secure-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #555;
}

.secure-icons span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.upgrade-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.upgrade-steps li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.upgrade-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.pricing-cta {
    background: var(--secondary-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: normal;
    color: rgba(255,255,255,0.9);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-hero p {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pricing-img {
        order: -1; /* Image on top for mobile */
        margin-bottom: 20px;
    }

    .pricing-img img {
        height: auto; /* Prevent fixed height issues on mobile */
    }

    .pricing-content.centered {
        grid-column: auto;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .plan-card.popular:hover {
        transform: translateY(-5px);
    }

    .gold-features {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-item {
        margin-bottom: 20px;
    }

    .troubleshooting-box {
        padding: 15px;
    }

    .secure-icons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .faq-grid.expanded {
        grid-template-columns: 1fr;
    }

    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hiw-img {
        order: -1; /* Image on top for mobile */
        margin-bottom: 20px;
    }

    .hiw-img img {
        height: auto;
    }

    .hiw-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* How It Works Styles */
.hiw-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.hiw-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hiw-hero p {
    font-size: 1.2rem;
}

.hiw-section {
    padding: 80px 0;
}

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hiw-content h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.hiw-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.hiw-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.hiw-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hiw-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.hiw-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.hiw-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.hiw-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.hiw-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table doesn't squish too much */
    background: #fff;
}

.hiw-table th, .hiw-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.hiw-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: bold;
}

.hiw-table tr:last-child td {
    border-bottom: none;
}

.hiw-table tr:nth-child(even) {
    background: #f9f9f9;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-item a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
}

.contact-form-wrapper {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-wrapper h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form-wrapper button {
    width: 100%;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.faq-cta {
    background-color: #f0f0f0;
    padding: 60px 0;
    text-align: center;
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Privacy Page Styles */
.privacy-hero {
    background: var(--secondary-color);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.privacy-content {
    padding: 60px 0;
    line-height: 1.8;
    color: #555;
}

.privacy-content h2 {
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.privacy-content h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.privacy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 10px;
}

/* Mobile Fixes - Ensure these override previous styles */
@media (max-width: 768px) {
    /* Pricing Page Mobile Fixes */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
        display: grid !important;
    }

    .pricing-content {
        min-width: 0;
        width: 100%;
    }

    .pricing-img {
        order: -1 !important;
        margin-bottom: 20px;
        min-width: 0;
        width: 100%;
    }

    .pricing-img img {
        height: auto;
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

    /* How It Works Page Mobile Fixes */
    .hiw-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        display: grid !important;
    }

    .hiw-content {
        min-width: 0; /* CRITICAL: Allows grid item to shrink below content size (e.g. table) */
        width: 100%;
        word-wrap: break-word;
    }

    .hiw-img {
        order: -1 !important;
        margin-bottom: 20px;
        min-width: 0;
        width: 100%;
    }

    .hiw-img img {
        height: auto;
        max-width: 100%;
        display: block; /* Removes bottom space */
        margin: 0 auto; /* Center image */
    }

    .hiw-table-container {
        display: block;
        width: 100%;
        max-width: 100%; /* Ensure it fits in parent */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px 0;
        border: 1px solid #eee; /* Optional visual boundary */
    }
    
    /* Ensure table itself doesn't force container width */
    .hiw-table {
        min-width: 600px; /* Keep minimum width to trigger scroll */
    }

    /* General Mobile Fixes */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .container {
        padding: 0 15px; /* Slightly reduce padding on very small screens */
    }
}

/* Sugar Baby App Page Styles */
.app-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.app-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.app-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.app-section {
    padding: 60px 0;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.app-grid.reverse .app-content-text {
    order: 2;
}

.app-grid.reverse .app-content-img {
    order: 1;
}

.app-content-img img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    display: block;
}

.download-guide {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
}

.download-step {
    text-align: center;
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.rules-box {
    background: #fff;
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rules-box ul {
    list-style: none;
    margin-top: 20px;
}

.rules-box li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.rules-box li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.comparison-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.comparison-col {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.comparison-col.highlight {
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.comparison-col h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.comparison-col ul {
    list-style: none;
}

.comparison-col li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.comparison-col .btn {
    display: block;
    margin: 20px auto 0;
    width: fit-content;
}

.screenshots-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.screenshots-grid img {
    max-width: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 5px solid #fff;
}

.benefits-split {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.benefit-group {
    flex: 1;
}

.benefit-group h3 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-group ul {
    list-style: none;
}

.benefit-group li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.benefit-group li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* App Mentorship Section Styles */
.app-mentorship-section {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    padding: 80px 0;
}

.mentorship-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.mentorship-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.mentorship-intro p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.8;
}

.mentorship-content .app-content-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.mentorship-content .app-content-img img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.mentorship-content .app-content-img img:hover {
    transform: scale(1.02);
}

/* App Page Mobile Styles */
@media (max-width: 768px) {
    .app-hero h1 {
        font-size: 2.5rem;
    }
    
    .app-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .app-grid.reverse .app-content-text {
        order: 1;
    }

    .app-grid.reverse .app-content-img {
        order: 2;
    }
    
    .comparison-container {
        flex-direction: column;
    }
    
    .screenshots-grid img {
        max-width: 100%;
        width: 80%;
        margin: 0 auto;
        display: block;
    }
    
    .benefits-split {
        flex-direction: column;
        gap: 30px;
    }
}

/* Help Center Styles */
.help-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg1.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.help-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.help-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.help-section {
    padding: 60px 0;
}

.bg-light-help {
    background-color: #f9f9f9;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.help-grid.reverse .help-text {
    order: 2;
}

.help-grid.reverse .help-img {
    order: 1;
}

.help-img img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 100%;
}

.help-text h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.help-text h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.help-text p {
    margin-bottom: 15px;
}

.help-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.help-list li {
    list-style: disc;
    margin-bottom: 10px;
}

.help-columns {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.help-col {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.help-col h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.guidelines-box {
    background: #fff5f8;
    border: 1px solid #ffe0eb;
    padding: 40px;
    border-radius: 10px;
}

.guideline-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.guideline-list li {
    background: #fff;
    padding: 15px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.step-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.step-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Help Page Mobile Styles */
@media (max-width: 768px) {
    .help-hero h1 {
        font-size: 2.5rem;
    }

    .help-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .help-grid.reverse .help-text {
        order: 1;
    }

    .help-grid.reverse .help-img {
        order: 2;
    }

    .help-columns {
        flex-direction: column;
    }

    .guideline-list {
        grid-template-columns: 1fr;
    }

    .step-guide {
        grid-template-columns: 1fr;
    }
}

/* Brisbane Updates */
.brisbane-center-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    color: #d4af37 !important;
}

.bg-black-brisbane {
    background-color: #000000;
    color: #fff;
}

.bg-black-brisbane h2, 
.bg-black-brisbane p, 
.bg-black-brisbane strong,
.bg-black-brisbane li {
    color: #fff;
}

.bg-black-brisbane .brisbane-text h2 {
    color: #d4af37;
}

/* =========================================
   Press Page Styles
   ========================================= */

.press-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/sugardaddiesnyc.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0 100px;
    margin-bottom: 0;
}

.press-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.press-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.press-page-wrapper {
    padding-bottom: 80px;
}

.press-section {
    padding: 80px 0;
}

.press-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.press-section .section-intro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    font-size: 1.2rem;
    color: #666;
}

.bg-light-press {
    background-color: #f9f9f9;
}

/* Press Grid Layout */
.press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.press-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.press-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.press-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.press-img img:hover {
    transform: translateY(-5px);
}

/* Press Releases */
.press-release-container {
    max-width: 900px;
    margin: 0 auto;
}

.press-release-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-left: 5px solid #d4af37; /* Gold accent */
}

.press-release-item .date {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.press-release-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.press-release-item p {
    color: #666;
    margin-bottom: 15px;
}

.press-release-item .read-more {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
}

.press-release-item .read-more:hover {
    text-decoration: underline;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.media-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.media-card:hover {
    transform: translateY(-10px);
}

.media-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.media-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.media-card p {
    font-style: italic;
    color: #666;
}

/* Expert Quotes */
.expert-quotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.quote-box::before {
    content: '"';
    font-size: 4rem;
    color: #f0f0f0;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 0;
}

.quote-box p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.quote-box .author {
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: #333;
    text-align: right;
}

/* Press List */
.press-list {
    list-style: none;
    padding: 0;
}

.press-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.press-list li::before {
    content: '\2022';
    color: #d4af37;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Myths Grid */
.myths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.myth-card {
    background: #fdfdfd;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.myth-card h3 {
    color: #d44;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.myth-card p strong {
    color: #28a745;
}

/* Media Logos */
.media-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.media-logos span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #aaa;
}

/* Contact Info */
.press-contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-card h3 {
    margin-bottom: 10px;
    color: #d4af37;
}

.contact-card p {
    margin-bottom: 5px;
    color: #666;
}

.contact-card a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

/* Global Map */
.global-map {
    margin-top: 50px;
    text-align: center;
}

.global-map img {
    max-width: 100%;
    border-radius: 10px;
    opacity: 0.8;
}

/* Press Page Mobile Styles */
@media (max-width: 768px) {
    .press-hero h1 {
        font-size: 2.5rem;
    }

    .press-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .press-grid.reverse .press-text {
        order: 1;
    }

    .press-grid.reverse .press-img {
        order: 2;
    }

    .expert-quotes {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Guideline Page Styles
   ========================================= */

.guideline-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/sugar-daddy-1236x820.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0 100px;
    margin-bottom: 0;
}

.guideline-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.guideline-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.guideline-page-wrapper {
    padding-bottom: 80px;
}

.guideline-section {
    padding: 80px 0;
}

.guideline-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.guideline-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.bg-light-guideline {
    background-color: #f9f9f9;
}

/* Guideline Grid Layout */
.guideline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guideline-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.guideline-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.guideline-img img:hover {
    transform: translateY(-5px);
}

/* Dos and Don'ts */
.dos-donts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.col-dos, .col-donts {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.col-dos {
    background-color: #f0fff4; /* Light green */
    border-top: 5px solid #28a745;
}

.col-donts {
    background-color: #fff5f5; /* Light red */
    border-top: 5px solid #dc3545;
}

.col-dos h4 {
    color: #28a745;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.col-donts h4 {
    color: #dc3545;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.col-dos ul, .col-donts ul {
    list-style: none;
    padding: 0;
}

.col-dos ul li, .col-donts ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.col-dos ul li::before {
    content: '\2713';
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.col-donts ul li::before {
    content: '\2715';
    color: #dc3545;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.violation-note {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ffeeba;
    font-size: 1rem;
}

/* Content Rules Grid */
.content-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rule-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid #d4af37;
}

.rule-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.rule-card p {
    color: #666;
    line-height: 1.6;
}

/* Reporting Steps */
.reporting-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.step {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.step h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #d4af37;
}

/* Consequence Box */
.consequence-box {
    background: #333;
    color: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.consequence-box h3 {
    color: #d4af37;
    margin-bottom: 30px;
}

.consequence-box ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
}

.consequence-box ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 20px;
    border-left: 3px solid #d4af37;
}

.consequence-box p {
    color: #ddd;
}

.consequence-box a {
    color: #d4af37;
    text-decoration: underline;
}

/* Final CTA */
.text-center {
    text-align: center;
}

.final-text {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    color: #555;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Guideline Page Mobile Styles */
@media (max-width: 768px) {
    .guideline-hero h1 {
        font-size: 2.2rem;
    }

    .guideline-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guideline-grid.reverse .guideline-text {
        order: 1;
    }

    .guideline-grid.reverse .guideline-img {
        order: 2;
    }

    .dos-donts-container {
        grid-template-columns: 1fr;
    }

    .consequence-box {
        padding: 30px;
    }
}

/* Sydney Page Styles */
.sydney-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/homesydney.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.sydney-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
}

.sydney-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.sydney-page-wrapper {
    background-color: #111;
    color: #eee;
    padding: 50px 0;
}

.sydney-section {
    padding: 60px 0;
}

.bg-light-sydney {
    background-color: #1a1a1a;
}

.sydney-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sydney-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.sydney-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ccc;
}

.sydney-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.sydney-img img:hover {
    transform: scale(1.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.feature-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #d4af37;
}

.step-list strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.type-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.type-card h4 {
    color: #d4af37;
    margin-bottom: 10px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.story-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.story-card span {
    color: #d4af37;
    font-weight: bold;
    display: block;
    text-align: right;
}

.date-ideas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.date-idea {
    background: #222;
    border-radius: 8px;
    overflow: hidden;
}

.date-idea img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.date-idea h4 {
    padding: 20px 20px 10px;
    color: #d4af37;
}

.date-idea p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.sydney-cta {
    background: linear-gradient(rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.9)), url('images/city2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
    color: #fff;
}

.sydney-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.sydney-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #d4af37;
}

.btn-white:hover {
    background: #f0f0f0;
    color: #b5952f;
}

@media (max-width: 768px) {
    .sydney-hero h1 {
        font-size: 2.2rem;
    }
    .sydney-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sydney-grid.reverse .sydney-text {
        order: 1;
    }
    .sydney-grid.reverse .sydney-img {
        order: 2;
    }
    .features-grid, .types-grid, .stories-grid, .date-ideas-grid {
        grid-template-columns: 1fr;
    }
}

/* Melbourne Page Styles */
.melbourne-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/homemelbourne.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.melbourne-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.melbourne-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.melbourne-page-wrapper {
    background-color: #0a0a0a;
    color: #f0f0f0;
    padding: 50px 0;
}

.melbourne-section {
    padding: 70px 0;
    border-bottom: 1px solid #222;
}

.melbourne-section:last-child {
    border-bottom: none;
}

.bg-dark-melbourne {
    background-color: #111;
}

.melbourne-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.melbourne-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.melbourne-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ccc;
    font-size: 1.1rem;
}

.melbourne-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}

.melbourne-img img:hover {
    transform: scale(1.03);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #aaa;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #d4af37;
    background: #222;
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Date Ideas */
.date-ideas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.date-idea {
    background: #151515;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.date-idea:hover {
    transform: translateY(-5px);
}

.date-idea img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.date-idea h4 {
    padding: 20px 20px 10px;
    color: #d4af37;
    font-size: 1.3rem;
}

.date-idea p {
    padding: 0 20px 20px;
    color: #bbb;
    font-size: 0.95rem;
}

.tips-box {
    background: #222;
    border-left: 4px solid #d4af37;
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
}

.tips-box h4 {
    color: #d4af37;
    margin-bottom: 10px;
}

/* Benefits List */
.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.benefit-list li::before {
    content: '\2713'; /* Checkmark */
    color: #d4af37;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.benefit-list strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-item {
    background: #1a1a1a;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.step-num {
    font-size: 4rem;
    font-weight: bold;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: -10px;
    right: 10px;
}

.step-item h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.place-card {
    background: #222;
    padding: 25px;
    border-radius: 8px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
}

.place-card:hover {
    border-bottom-color: #d4af37;
}

.place-card h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.place-card p {
    font-size: 0.95rem;
    color: #aaa;
}

/* Safety & Challenges */
.safety-challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-box {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
}

.info-box h3 {
    color: #d4af37;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.safety ul {
    list-style: none;
    padding: 0;
}

.safety li {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 2px solid #d4af37;
}

.challenges p {
    margin-bottom: 15px;
}

.challenges strong {
    color: #eee;
}

/* CTA */
.melbourne-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.melbourne-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
}

.melbourne-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-gold {
    background-color: #d4af37;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-gold:hover {
    background-color: #b5952f;
}

.link-light {
    color: #fff;
    text-decoration: underline;
    padding: 15px;
    align-self: center;
}

.link-light:hover {
    color: #d4af37;
}

/* Responsive */
@media (max-width: 992px) {
    .melbourne-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .melbourne-grid.reverse .melbourne-text {
        order: 1;
    }
    
    .melbourne-grid.reverse .melbourne-img {
        order: 2;
    }

    .features-grid, .date-ideas-grid, .steps-container, .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .safety-challenges-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .melbourne-hero h1 {
        font-size: 2.2rem;
    }
    
    .melbourne-text h2 {
        font-size: 2rem;
    }
    
    .features-grid, .date-ideas-grid, .steps-container, .places-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Brisbane Page Styles */
.brisbane-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/homebrisbane.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.brisbane-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.brisbane-hero p {
    font-size: 1.5rem;
    margin: 0 auto 40px;
    max-width: 800px;
    text-align: center;
}

.brisbane-page-wrapper {
    background-color: #fff;
    color: #333;
}

.brisbane-section {
    padding: 80px 20px;
}

.bg-light-brisbane {
    background-color: #f9f9f9;
}

.bg-dark-brisbane {
    background-color: #1a1a1a;
    color: #fff;
}

.bg-dark-brisbane h2, .bg-dark-brisbane p, .bg-dark-brisbane h4 {
    color: #fff;
}

.brisbane-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.brisbane-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
}

.bg-dark-brisbane .brisbane-text h2 {
    color: #d4af37;
}

.brisbane-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: inherit;
}

.benefit-item {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid #d4af37;
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.bg-dark-brisbane .benefit-item h3 {
    color: #d4af37;
}

.bg-dark-brisbane .benefit-item p {
    color: #ddd;
}

.brisbane-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-text {
    color: #d4af37;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 10px;
    transition: transform 0.3s;
}

.btn-text:hover {
    transform: translateX(5px);
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.profile-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-10px);
}

.profile-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #d4af37;
}

.profile-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.profile-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.allowance-box {
    margin-top: 50px;
    background: #fff;
    border-left: 5px solid #d4af37;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.allowance-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

/* Reward List */
.reward-list {
    list-style: none;
    padding: 0;
}

.reward-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.reward-list li::before {
    content: '\2713'; /* Checkmark */
    color: #d4af37;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Allowance Tips */
.allowance-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.tip-card h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tip-card p {
    font-size: 1rem;
    color: #ddd;
}

/* Safety Section */
.safety-wrapper {
    text-align: center;
}

.safety-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.safety-item {
    text-align: center;
    padding: 20px;
}

.safety-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    display: block;
    border: 2px solid #d4af37;
    width: 60px;
    height: 60px;
    line-height: 56px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-style: normal;
}

.icon-lock::before { content: 'L'; }
.icon-map::before { content: 'M'; }
.icon-shield::before { content: 'S'; }
.icon-user::before { content: 'U'; }


.safety-item h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.safety-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Convo Tips */
.convo-tips {
    list-style: none;
    padding: 0;
}

.convo-tips li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    line-height: 1.7;
}

.convo-tips li::before {
    content: '\2022';
    color: #d4af37;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

/* Date Ideas */
.date-ideas-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.date-spot {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.date-spot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.date-spot:hover img {
    transform: scale(1.1);
}

.spot-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
}

.spot-info h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #d4af37;
}

.spot-info p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* CTA */
.brisbane-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/city7.jpg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: #191616;
    position: relative;
    background-attachment: fixed;
}

.brisbane-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255);
}

.brisbane-cta .container {
    position: relative;
    z-index: 1;
}

.brisbane-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
}

.brisbane-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sub-cta {
    font-size: 1rem !important;
    margin-top: 20px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .brisbane-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brisbane-grid.reverse .brisbane-text {
        order: 1;
    }

    .brisbane-grid.reverse .brisbane-img {
        order: 2;
    }

    .profile-grid, .date-ideas-container, .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brisbane-hero h1 {
        font-size: 2.5rem;
    }

    .brisbane-text h2 {
        font-size: 2rem;
    }

    .allowance-tips-grid {
        grid-template-columns: 1fr;
    }

    .profile-grid, .date-ideas-container, .safety-grid {
        grid-template-columns: 1fr;
    }
}

/* Neighborhoods */
.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.neighborhood-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #d4af37;
}

.neighborhood-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.neighborhood-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.story-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-card h4 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: #d4af37;
}

.story-card p {
    padding: 0 20px 30px;
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 25px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.faq-item h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .neighborhood-grid, .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* Perth Page Scoped Styles */
.perth-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/homeperth.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.perth-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.perth-hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.perth-page-wrapper {
    overflow-x: hidden;
}

.perth-section {
    padding: 80px 0;
}

.bg-light-perth {
    background-color: #f9f9f9;
}

.bg-dark-perth {
    background-color: #1a1a1a;
    color: #fff;
}

.perth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.perth-grid.reverse .perth-text {
    order: 2;
}

.perth-grid.reverse .perth-img {
    order: 1;
}

.perth-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #d4af37;
}

.perth-center-title h2 {
    text-align: center;
}

.bg-dark-perth .perth-text h2 {
    color: #d4af37;
}

.perth-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.bg-dark-perth .perth-text p {
    color: #ccc;
}

.perth-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.perth-img img:hover {
    transform: translateY(-5px);
}

.btn-text {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.btn-text:hover {
    color: #b39028;
    border-color: #b39028;
}

/* Pros and Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.pros-card, .cons-card {
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pros-card {
    background-color: #fff;
    border-top: 5px solid #28a745;
}

.cons-card {
    background-color: #fff;
    border-top: 5px solid #dc3545;
}

.pros-card h3, .cons-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.pros-card ul, .cons-card ul {
    list-style: none;
    padding: 0;
}

.pros-card li, .cons-card li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.pros-card li::before {
    content: '+';
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.cons-card li::before {
    content: '-';
    color: #dc3545;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 8px;
}

.perth-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #222;
    color: #fff;
    min-width: 600px;
}

.perth-table th, .perth-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.perth-table th {
    background-color: #d4af37;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
}

.perth-table tr:last-child td {
    border-bottom: none;
}

.perth-table tr:hover td {
    background-color: #2a2a2a;
}

.bg-dark-perth h2, .bg-dark-perth .section-intro {
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.bg-dark-perth .section-intro {
    color: #ccc;
}

/* Date Ideas */
.date-idea {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-left: 4px solid #d4af37;
}

.date-idea h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.date-idea p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Etiquette */
.etiquette-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.etiquette-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.etiquette-card:hover {
    transform: translateY(-5px);
}

.etiquette-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.etiquette-card p {
    color: #666;
    line-height: 1.6;
}

/* Verification */
.verification-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.verify-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.verify-item h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.verify-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA */
.perth-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/city1.jpg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background-attachment: fixed;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .perth-hero h1 {
        font-size: 2.8rem;
    }
    
    .perth-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .perth-grid.reverse .perth-text {
        order: 1;
    }
    
    .perth-grid.reverse .perth-img {
        order: 2;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .etiquette-grid {
        grid-template-columns: 1fr;
    }
    
    .verification-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .perth-hero h1 {
        font-size: 2.2rem;
    }
    
    .perth-hero p {
        font-size: 1.1rem;
    }
    
    .perth-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* Perth Neighborhoods & FAQ */
.perth-neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.perth-neighborhood-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #d4af37;
    transition: transform 0.3s;
}

.perth-neighborhood-card:hover {
    transform: translateY(-5px);
}

.perth-neighborhood-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.perth-neighborhood-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.perth-faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.perth-faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border-left: 4px solid #d4af37;
}

.perth-faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.perth-faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Perth Responsive Fix for Neighborhoods */
@media (max-width: 992px) {
    .perth-neighborhood-grid {
        grid-template-columns: 1fr;
    }
}

/* Adelaide Page Styles */
.adelaide-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/city2.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.adelaide-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.adelaide-hero p {
    font-size: 1.5rem;
    margin: 0 auto 40px;
    max-width: 800px;
    text-align: center;
}

.adelaide-page-wrapper {
    background-color: #fff;
    color: #333;
}

.adelaide-section {
    padding: 80px 20px;
}

.bg-light-adelaide {
    background-color: #f9f9f9;
}

.bg-dark-adelaide {
    background-color: #1a1a1a;
    color: #fff;
}

.bg-dark-adelaide h2, .bg-dark-adelaide p, .bg-dark-adelaide h4, .bg-dark-adelaide h3 {
    color: #fff;
}

.adelaide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.adelaide-grid.reverse .adelaide-text {
    order: 2;
}

.adelaide-grid.reverse .adelaide-img {
    order: 1;
}

.adelaide-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
}

.bg-dark-adelaide .adelaide-text h2 {
    color: #d4af37;
}

.adelaide-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: inherit;
}

.adelaide-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.adelaide-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.lifestyle-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.lifestyle-card:hover {
    transform: translateY(-10px);
}

.lifestyle-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #d4af37;
}

.lifestyle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.lifestyle-card p {
    color: #666;
    line-height: 1.6;
}

.adelaide-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.place-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #d4af37;
}

.place-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.place-card p {
    color: #666;
    line-height: 1.6;
}

.conversation-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.guide-step {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.guide-step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.guide-step p {
    color: #666;
    line-height: 1.6;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.diff-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.diff-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.diff-item p {
    color: #ddd;
    line-height: 1.6;
}

.etiquette-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.etiquette-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
    color: #555;
}

.etiquette-list li::before {
    content: '✓';
    color: #d4af37;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.etiquette-list strong {
    color: #333;
}

.adelaide-faq-container {
    max-width: 900px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.adelaide-faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border-top: 3px solid #d4af37;
}

.adelaide-faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.adelaide-faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.adelaide-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/home3.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

@media (max-width: 992px) {
    .adelaide-hero h1 {
        font-size: 2.8rem;
    }
    
    .adelaide-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .adelaide-grid.reverse .adelaide-text {
        order: 1;
    }
    
    .adelaide-grid.reverse .adelaide-img {
        order: 2;
    }
    
    .adelaide-lifestyle-grid, .conversation-guide, .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .adelaide-faq-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .adelaide-hero h1 {
        font-size: 2.2rem;
    }
    
    .adelaide-hero p {
        font-size: 1.1rem;
    }
    
    .adelaide-text h2 {
        font-size: 2rem;
    }
}
