:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #1a1a1a; /* Dark Gray/Black */
    --accent-color: #c2185b; /* Dark Pink */
    --text-color: #333333;
    --light-text: #666666;
    --background-color: #ffffff;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --max-width: 1200px;
    --spacing-unit: 1rem;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    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(--background-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo img {
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
}

nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: var(--secondary-color);
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/home2.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections General */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-bg-light {
    background-color: var(--light-bg);
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Sugar Baby/Daddy Sections */
.role-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.role-section.reverse {
    flex-direction: row-reverse;
}

.role-text {
    flex: 1;
    font-size: 1.1rem;
}

.role-image {
    flex: 1;
}

.role-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* How It Works */
.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 0 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

.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);
}

/* Terms Section */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.term-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.term-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Cities */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.city-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px; /* Increased height */
    box-shadow: var(--shadow);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7); /* More transparent background */
    color: var(--white);
    padding: 20px;
    max-height: 50%; /* Reduced height to show more image */
    overflow-y: auto; /* Scrollable content */
    transition: max-height 0.3s ease;
}

.city-card:hover .city-info {
    max-height: 80%; /* Expand on hover if desired, but kept scrollable */
    background: rgba(0, 0, 0, 0.85);
}

/* Scrollbar styling for city-info */
.city-info::-webkit-scrollbar {
    width: 6px;
}

.city-info::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}

.city-info::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.city-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.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: 10px;
    color: var(--secondary-color);
}

/* Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.story-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.story-card p {
    font-style: italic;
    color: var(--light-text);
}

/* Members */
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.member-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.member-info span {
    color: var(--primary-color);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

/* App Section */
.app-section {
    background-color: var(--secondary-color);
    color: var(--white);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.app-text {
    flex: 1;
    font-size: 1.1rem;
}

.app-text h2 {
    color: var(--white);
    text-align: left;
}

.app-text h2::after {
    margin: 15px 0 0;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 400px;
    margin: 0 auto;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.blog-content a {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
}

/* 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);
}

.cta-section h2 {
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #888;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--secondary-color);
}

/* About Page Styles */
.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-header p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.row.reverse {
    flex-direction: row-reverse;
}

.col-text, .col-image {
    flex: 1;
    min-width: 300px;
}

.col-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.members-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.member-category {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.member-category:hover {
    transform: translateY(-5px);
}

.member-category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.member-category h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-list-detail {
    list-style: none;
}

.feature-list-detail li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.feature-list-detail li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-column {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
    border: 1px solid #eee;
}

.pricing-column.highlight {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-column h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.price-list {
    text-align: left;
    margin-bottom: 30px;
}

.price-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.price-list li:last-child {
    border-bottom: none;
}

.membership-note {
    font-style: italic;
    color: var(--light-text);
    font-size: 0.9rem;
}

.membership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.type-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.type-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.guidelines-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.guidelines-content p {
    margin-bottom: 20px;
}

.guidelines-content p:last-child {
    margin-bottom: 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}

.tip-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-item {
    text-align: center;
    padding: 20px;
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Sugar Baby Page Styles */
.pros-cons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.pros-card, .cons-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.pros-card h3, .cons-card h3 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--secondary-color);
}

.pros-card {
    border-top: 5px solid #4CAF50; /* Green for Pros */
}

.cons-card {
    border-top: 5px solid #F44336; /* Red for Cons */
}

.pros-card ul, .cons-card ul {
    list-style: none;
    padding-left: 0;
}

.pros-card li, .cons-card li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pros-card li::before {
    content: '✓';
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.cons-card li::before {
    content: '✗';
    color: #F44336;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.memes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.meme-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.meme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.meme-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.meme-card p {
    font-size: 0.95rem;
    color: var(--light-text);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.quote-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.quote-card blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.quote-card::before {
    content: '"';
    font-size: 10rem;
    color: rgba(212, 175, 55, 0.1); /* Primary color with opacity */
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: serif;
}

/* Sugar Daddy Page Styles */
.comparison-table-container {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px; /* Ensure it scrolls on small screens */
}

.comparison-table th, .comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background-color: var(--light-bg);
}

.comparison-table td:first-child {
    font-weight: bold;
    color: var(--primary-color);
    width: 30%;
}

.warning-box {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin-top: 20px;
    border-radius: var(--border-radius);
    color: #856404;
}

.warning-box h3 {
    color: #856404;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-color);
}

/* App Page Styles */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.payment-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.payment-card.ios {
    border-top: 5px solid #007aff;
}

.payment-card.android {
    border-top: 5px solid #3ddc84;
}

.payment-card ol {
    margin-left: 20px;
    margin-top: 15px;
}

.payment-card li {
    margin-bottom: 10px;
}

.download-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.download-steps .step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-num {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Kobenhavn Page Styles */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.story-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.story-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.story-header h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.story-header p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

.story-card p {
    font-style: italic;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content, .role-section, .app-content {
        flex-direction: column;
    }
    
    .role-section.reverse {
        flex-direction: column;
    }

    header {
        height: auto;
        padding-bottom: 0;
    }

    .header-container {
        flex-wrap: wrap;
        padding: 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: auto;
    }

    .logo {
        margin-bottom: 0;
        justify-content: flex-start;
        font-size: 1.2rem;
    }

    .logo img {
        height: 40px;
        margin-right: 8px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        flex-basis: 100%;
        background-color: var(--white);
    }

    .nav-menu.active {
        max-height: 500px;
        margin-top: 15px;
        padding-bottom: 15px;
        border-top: 1px solid #eee;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding-top: 15px;
    }

    .nav-menu a {
        display: block;
        padding: 5px 0;
    }
    
    .hero {
        height: auto;
        padding: 120px 20px 60px; /* Added top padding for fixed header */
        min-height: 80vh;
    }

    .step-card {
        flex: 0 1 100%;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    /* About Page Responsive */
    .page-header {
        height: auto;
        min-height: 300px;
        padding: 40px 20px;
        margin-top: 80px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .pricing-column.highlight {
        transform: none;
    }
    
    .row, .row.reverse {
        flex-direction: column;
    }
}

/* Contact Page Styles */
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-info-card p, .contact-info-card a {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* FAQ Page Styles */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question.active {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: var(--white);
    color: var(--text-color);
    line-height: 1.6;
}

.faq-answer.open {
    padding: 20px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 5px;
}