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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 80px;
}

a {
    color: #9d860a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b8860b;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.navbar-brand a {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.navbar-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.navbar-nav a:hover {
    color: #ffd700;
}

.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    pointer-events: auto;
    position: relative;
    min-width: 45px;
    min-height: 35px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn:hover {
    opacity: 0.8;
}

.mobile-menu-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block !important;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    padding: 0.75rem 0;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #ffd700;
}

.mobile-nav-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
    padding: 0;
}

#mobile-login-btn {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#mobile-signup-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #333 !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #333;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #ffd700;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-apple, .btn-google {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-apple:hover, .btn-google:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn-apple svg, .btn-google svg {
    width: 24px;
    height: 24px;
}

.btn-google {
    background: #000;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #fff;
}

.about-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.about-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffd700;
}

.about-feature svg {
    width: 24px;
    height: 24px;
}

/* What is Sections */
.what-is-section {
    padding: 6rem 0;
    background: #fff;
}

.what-is-section.what-is-baby {
    background: #f8f9fa;
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.what-is-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.what-is-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.what-is-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9d860a;
    font-weight: 500;
}

.what-is-feature svg {
    width: 24px;
    height: 24px;
}

.what-is-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

/* For Daddies/Babies Sections */
.for-daddies, .for-babies {
    padding: 6rem 0;
    background: #f8f9fa;
}

.for-babies {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.for-babies .section-title,
.for-babies .section-subtitle,
.for-babies .benefit-card h3,
.for-babies .benefit-card p,
.for-babies .cta-box p {
    color: #fff;
}

.for-babies .section-subtitle {
    opacity: 0.9;
}

.for-babies .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.for-babies .benefit-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.for-babies .cta-box {
    background: rgba(255, 255, 255, 0.15);
}

.cta-box p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Cities Section */
.cities {
    padding: 6rem 0;
    background: #f8f9fa;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.city-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.city-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: scale(1.05);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1.5rem;
    color: #fff;
}

.city-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.city-count {
    font-size: 0.85rem;
    opacity: 0.9;
}

.find-near-me {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.find-near-me h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.find-near-me p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Safety Tips Section */
.safety {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.safety .section-title,
.safety .section-subtitle {
    color: #fff;
}

.safety .section-subtitle {
    opacity: 0.9;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.safety-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
}

.safety-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
}

.safety-icon svg {
    width: 30px;
    height: 30px;
}

.safety-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.safety-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Login & Sign Up Steps Section */
.login-steps {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.login-steps .section-title,
.login-steps .section-subtitle {
    color: #fff;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.step-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
    margin-top: 2rem;
}

.steps-cta .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Do's and Don'ts Section */
.dos-donts {
    padding: 6rem 0;
    background: #f8f9fa;
}

.dos-donts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.dos-column,
.donts-column {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.dos-column h3,
.donts-column h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.dos-column h3 {
    color: #10b981;
}

.donts-column h3 {
    color: #ef4444;
}

.dos-column h3 svg,
.donts-column h3 svg {
    width: 28px;
    height: 28px;
}

.dos-column ul,
.donts-column ul {
    list-style: none;
}

.dos-column li,
.donts-column li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
}

.dos-column li:last-child,
.donts-column li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cross-icon {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* App Section */
.app {
    padding: 6rem 0;
    background: #fff;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.app-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features li {
    padding: 0.5rem 0;
    color: #ffd700;
    font-size: 1.05rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-image img {
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

/* Luxury Experience Section */
.luxury {
    padding: 6rem 0;
    background: #1a1a2e;
}

.luxury .section-title,
.luxury .section-subtitle {
    color: #fff;
}

.luxury .section-subtitle {
    opacity: 0.8;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.luxury-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-5px);
}

.luxury-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.luxury-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: #fff;
}

.luxury-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.luxury-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Discreet Section */
.discreet {
    padding: 6rem 0;
    background: #f8f9fa;
}

.discreet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discreet-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.discreet-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.discreet-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffd700;
}

.discreet-feature svg {
    width: 24px;
    height: 24px;
}

.discreet-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: #fff;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.story-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffd700;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.story-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-author {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.author-name {
    color: #333;
    font-weight: 600;
}

.author-location {
    color: #ffd700;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffd700;
}

.modal-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab.active {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.modal-body h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.modal-body form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-body input,
.modal-body select {
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal-body input:focus,
.modal-body select:focus {
    outline: none;
    border-color: #ffd700;
}

.forgot-password {
    text-align: center;
    color: #ffd700;
    text-decoration: none;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.terms {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-section a {
    text-decoration: none;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffd700;
    color: #333;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .app-content,
    .discreet-content,
    .what-is-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-content,
    .discreet-content,
    .what-is-content {
        gap: 2rem;
    }

    .app-image,
    .discreet-image,
    .what-is-image {
        order: -1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid,
    .stories-grid,
    .cities-grid,
    .safety-grid,
    .luxury-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features,
    .discreet-features {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
        background: rgba(255, 215, 0, 0.9);
        border-radius: 6px;
        padding: 12px 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        position: relative;
        z-index: 9999;
        min-width: 48px;
        min-height: 48px;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-btn span {
        background: #333 !important;
    }

    .navbar-actions .btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .features-grid,
    .stories-grid,
    .cities-grid,
    .safety-grid,
    .luxury-grid,
    .benefits-grid,
    .dos-donts-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-actions,
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .stat {
        flex: 1;
        min-width: 80px;
        max-width: 120px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero-content {
        text-align: center;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1rem;
    }

    .feature-card,
    .benefit-card,
    .city-card,
    .safety-card,
    .step-card,
    .story-card {
        padding: 1.5rem;
    }

    .footer-links ul {
        gap: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Image optimization for mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Touch-friendly buttons */
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Form inputs */
    input, textarea {
        padding: 0.75rem;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    /* Modal for mobile */
    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
        max-width: 100%;
    }

    /* Hero adjustments */
    .hero {
        padding: 4rem 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Section padding */
    section {
        padding: 3rem 0;
    }

    /* Text adjustments */
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Remove horizontal overflow */
    html, body {
        overflow-x: hidden;
    }

    /* Smooth touch scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* About Page Specific Styles */
:root {
    --primary-color: #ffd700;
    --secondary-color: #b8860b;
    --accent-color: #ffd700;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
}

/* About Page Hero Section */
.about-page .hero {
    padding: 12rem 0 8rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.about-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-page .hero h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-page .hero h1 span {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-page .hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.about-page .hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.about-page .stat-number {
    font-size: 3rem;
}

/* Mission Section */
.mission {
    padding: 8rem 0;
    background: var(--bg-light);
}

.mission .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.mission-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-image {
    position: relative;
}

.mission-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.mission-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
}

/* Values Section */
.values {
    padding: 8rem 0;
    background: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline Section */
.timeline {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.timeline .section-header h2,
.timeline .section-header p {
    color: #fff;
}

.timeline .section-header p {
    opacity: 0.9;
}

.timeline-items {
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 2rem);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    color: #fff;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-card .role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Page CTA Section */
.about-page .cta {
    padding: 8rem 0;
    background: var(--bg-white);
    text-align: center;
}

.about-page .cta .container {
    max-width: 800px;
}

.about-page .cta h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-page .cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* About Page Responsive Design */
@media (max-width: 992px) {
    .about-page .hero h1 {
        font-size: 2.5rem;
    }

    .about-page .hero-stats {
        gap: 2rem;
    }

    .about-page .stat-number {
        font-size: 2rem;
    }

    .mission .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-content h2::before {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-items::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-item::after {
        left: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page .hero h1 {
        font-size: 2rem;
    }

    .about-page .hero p {
        font-size: 1.1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-page .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Single Post Banners */
.city-detail-page .single-banner {
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    margin: 2rem auto;
    border-radius: 15px;
    max-width: 1200px;
    text-align: center;
}

.city-detail-page .banner-content {
    max-width: 700px;
    margin: 0 auto;
}

.city-detail-page .banner-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.city-detail-page .banner-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.city-detail-page .banner-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.city-detail-page .single-banner-reverse {
    text-align: center;
}

/* Posts Section */
.city-detail-page .posts-section {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.city-detail-page .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.city-detail-page .post-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-detail-page .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.city-detail-page .post-image {
    height: 200px;
    overflow: hidden;
}

.city-detail-page .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.city-detail-page .post-card:hover .post-image img {
    transform: scale(1.05);
}

.city-detail-page .post-content {
    padding: 1.5rem;
}

.city-detail-page .post-category {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.city-detail-page .post-title {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.city-detail-page .post-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.city-detail-page .post-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.city-detail-page .post-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.city-detail-page .post-link:hover {
    text-decoration: underline;
}

/* Feature Post */
.city-detail-page .feature-post {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.city-detail-page .feature-post-image {
    height: 400px;
    overflow: hidden;
}

.city-detail-page .feature-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-detail-page .feature-post-content {
    padding: 2.5rem;
}

.city-detail-page .feature-post-content .post-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.city-detail-page .feature-post-content .post-excerpt {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Stats Banner */
.city-detail-page .stats-banner {
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 1200px;
}

.city-detail-page .stats-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.city-detail-page .stats-banner-item {
    text-align: center;
}

.city-detail-page .stats-banner-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.city-detail-page .stats-banner-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.city-detail-page .stats-banner-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

/* City Detail Page Specific Styles */
.city-detail-page .city-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="white" opacity="0.1" width="100" height="100"/></svg>');
    position: relative;
    overflow: hidden;
}

.city-detail-page .city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"%3E%3Cpath fill="white" fill-opacity="0.05" d="M150 150h100v100H150z M250 250h100v100H250z M0 0h100v100H0z M300 0h100v100H300z"/%3E%3C/svg%3E');
}

.city-detail-page .city-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.city-detail-page .hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.city-detail-page .stat-item {
    text-align: center;
}

.city-detail-page .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.city-detail-page .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.city-detail-page .stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.city-detail-page .city-detail-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.city-detail-page .content-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.city-detail-page .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.city-detail-page .section-title {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.city-detail-page .section-subtitle {
    color: #666;
}

/* About Section */
.city-detail-page .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.city-detail-page .about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.city-detail-page .about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.city-detail-page .highlight-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #eee;
}

.city-detail-page .highlight-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.city-detail-page .highlight-card h4 {
    color: #333;
    margin-bottom: 0.3rem;
}

.city-detail-page .highlight-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Stats Grid */
.city-detail-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.city-detail-page .stat-card {
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.city-detail-page .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.city-detail-page .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.city-detail-page .stat-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.city-detail-page .stat-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Demographics */
.city-detail-page .demographics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.city-detail-page .demographic-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.city-detail-page .demographic-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.city-detail-page .chart-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.city-detail-page .chart-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-detail-page .bar-fill {
    height: 25px;
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    border-radius: 4px;
    min-width: 20px;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}

.city-detail-page .bar-label {
    font-size: 0.85rem;
    color: #666;
    width: 60px;
}

.city-detail-page .occupation-list {
    list-style: none;
    padding: 0;
}

.city-detail-page .occupation-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
}

.city-detail-page .dot {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

.city-detail-page .neighborhood-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-detail-page .tag {
    background: #ffd700;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Hot Spots */
.city-detail-page .hotspots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.city-detail-page .hotspot-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.city-detail-page .hotspot-card:hover {
    transform: translateY(-5px);
}

.city-detail-page .hotspot-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.city-detail-page .hotspot-info {
    padding: 1.5rem;
}

.city-detail-page .hotspot-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.city-detail-page .hotspot-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.city-detail-page .hotspot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.city-detail-page .hotspot-tags .tag {
    background: #f0f0f0;
    color: #666;
}

/* Tips Section */
.city-detail-page .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.city-detail-page .tip-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.city-detail-page .tip-number {
    display: inline-block;
    background: #ffd700;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.city-detail-page .tip-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.city-detail-page .tip-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Stories Section */
.city-detail-page .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.city-detail-page .story-card {
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.city-detail-page .story-avatar {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.city-detail-page .story-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.city-detail-page .story-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

/* Single Post Page Specific Styles */
.single-post-page .post-hero {
    background-size: cover;
    background-position: center;
    padding: 8rem 0 5rem;
    position: relative;
}

.single-post-page .post-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.single-post-page .post-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.single-post-page .post-hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.single-post-page .post-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.single-post-page .post-meta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.single-post-page .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.single-post-page .meta-item svg {
    width: 18px;
    height: 18px;
}

/* Article Section */
.single-post-page .article-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.single-post-page .article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.single-post-page .article-main {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.single-post-page .article-body {
    padding: 3rem;
}

.single-post-page .article-lead {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.single-post-page .article-body h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.single-post-page .article-body h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.single-post-page .article-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.single-post-page .article-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 4px solid #ffd700;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.single-post-page .article-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 0.5rem;
}

.single-post-page .article-quote cite {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
}

.single-post-page .article-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.single-post-page .article-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.single-post-page .article-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.single-post-page .article-list li strong {
    color: #333;
}

/* Content Banner */
.single-post-page .content-banner {
    background-size: cover;
    background-position: center;
    padding: 3rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.single-post-page .content-banner .banner-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.single-post-page .content-banner .banner-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.single-post-page .content-banner .banner-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.single-post-page .content-banner .btn {
    background: #fff;
    color: #ffd700;
}

.single-post-page .content-banner .btn:hover {
    background: #f8f9fa;
}

.single-post-page .content-banner .btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.single-post-page .content-banner .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Quote Banner */
.single-post-page .quote-banner {
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.single-post-page .quote-content p {
    color: #fff;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
}

/* Stats Comparison */
.single-post-page .stats-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.single-post-page .comparison-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.single-post-page .comparison-card h4 {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.single-post-page .comparison-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.3rem;
}

.single-post-page .comparison-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Author Box */
.single-post-page .author-box {
    display: flex;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.single-post-page .author-avatar {
    font-size: 3rem;
    flex-shrink: 0;
}

.single-post-page .author-info h4 {
    color: #333;
    margin-bottom: 0.3rem;
}

.single-post-page .author-info p {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.single-post-page .author-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Share Section */
.single-post-page .share-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.single-post-page .share-section h4 {
    color: #333;
    margin-bottom: 1rem;
}

.single-post-page .share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.single-post-page .share-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.single-post-page .share-facebook { background: #3b5998; }
.single-post-page .share-twitter { background: #1da1f2; }
.single-post-page .share-linkedin { background: #0077b5; }
.single-post-page .share-copy { background: #ffd700; }

.single-post-page .share-btn:hover {
    opacity: 0.9;
}

/* Related Posts */
.single-post-page .related-posts {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.single-post-page .related-title {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.single-post-page .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.single-post-page .related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-post-page .related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.single-post-page .related-image {
    height: 120px;
    overflow: hidden;
}

.single-post-page .related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-page .related-content {
    padding: 1rem;
}

.single-post-page .related-category {
    display: inline-block;
    background: #ffd700;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.single-post-page .related-content h4 {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.single-post-page .related-date {
    color: #999;
    font-size: 0.8rem;
}

/* Sidebar */
.single-post-page .article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.single-post-page .sidebar-cta {
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.single-post-page .sidebar-cta h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.single-post-page .sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.single-post-page .btn-block {
    width: 100%;
    display: block;
}

.single-post-page .sidebar-stats {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.single-post-page .sidebar-stats h4 {
    color: #333;
    margin-bottom: 1rem;
}

.single-post-page .sidebar-stats .stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.single-post-page .sidebar-stats .stat-item:last-child {
    border-bottom: none;
}

.single-post-page .sidebar-stats .stat-label {
    color: #666;
}

.single-post-page .sidebar-stats .stat-value {
    color: #ffd700;
    font-weight: 600;
}

.single-post-page .sidebar-toc {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.single-post-page .sidebar-toc h4 {
    color: #333;
    margin-bottom: 1rem;
}

.single-post-page .toc-nav {
    display: flex;
    flex-direction: column;
}

.single-post-page .toc-link {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.single-post-page .toc-link:hover {
    color: #ffd700;
}

.single-post-page .sidebar-cities {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.single-post-page .sidebar-cities h4 {
    color: #333;
    margin-bottom: 1rem;
}

.single-post-page .city-list {
    list-style: none;
    padding: 0;
}

.single-post-page .city-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.single-post-page .city-list li:last-child {
    border-bottom: none;
}

.single-post-page .city-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-post-page .city-list a:hover {
    color: #ffd700;
}

/* City Page Specific Styles */
.city-page .city-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.city-page .section {
    margin-bottom: 4rem;
}

.city-page .section-title {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.city-page .section-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

/* Country Grid */
.city-page .country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.city-page .country-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.city-page .country-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.city-page .country-flag {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.city-page .country-info h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.city-page .country-info p {
    color: #666;
    font-size: 0.9rem;
}

.city-page .country-arrow {
    margin-left: auto;
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
}

/* City Groups */
.city-page .city-group {
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.city-page .city-group-title {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.city-page .city-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.city-page .city-item {
    display: block;
    padding: 0.8rem 1.2rem;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #ffd700;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.city-page .city-item:hover {
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    color: #fff;
}

/* Contact Page Specific Styles */
.contact-page .contact-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-page .contact-form-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-page .contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-page .contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-page .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-page .contact-details h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-page .contact-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.contact-page .contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-page .contact-form label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.contact-page .contact-form textarea {
    resize: vertical;
}

.contact-page .faq-section {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Mobile Responsive Styles */
@media (max-width: 992px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-page .contact-form-section {
        order: 1;
    }
    
    .contact-page .contact-info-section {
        order: 2;
    }
    
    .contact-page .contact-form-section,
    .contact-page .contact-info-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page .contact-content {
        padding: 2rem 0;
    }
    
    .contact-page .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-page .section-title {
        font-size: 1.8rem;
    }
    
    .contact-page .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-page .contact-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .contact-page .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-page .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-page .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-page .contact-details p {
        font-size: 0.85rem;
    }
    
    .contact-page .contact-form label {
        font-size: 0.9rem;
    }
    
    .contact-page .contact-form input,
    .contact-page .contact-form select,
    .contact-page .contact-form textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .contact-page .faq-section {
        margin-top: 2rem;
    }
    
    .contact-page .faq-section .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .contact-page .contact-form-section {
        padding: 1rem;
    }
    
    .contact-page .contact-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .contact-page .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-page .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-page .contact-details h3 {
        font-size: 0.95rem;
    }
    
    .contact-page .contact-details p {
        font-size: 0.8rem;
    }
    
    .contact-page .contact-form .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-page .contact-form label {
        font-size: 0.85rem;
    }
    
    .contact-page .contact-form input,
    .contact-page .contact-form select,
    .contact-page .contact-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .contact-page .contact-form textarea {
        min-height: 120px;
    }
    
    .contact-page .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Safety Tips Page Specific Styles */
.safety-page .safety-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.safety-page .faq-category {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.safety-page .category-title {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ffd700;
}

.safety-page .faq-container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.safety-page .faq-item {
    border-bottom: 1px solid #eee;
}

.safety-page .faq-item:last-child {
    border-bottom: none;
}

.safety-page .faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.safety-page .faq-question:hover {
    background-color: #f8f9fa;
}

.safety-page .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.safety-page .faq-question.active::after {
    transform: rotate(45deg);
}

.safety-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.safety-page .faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

.safety-page .safety-banner {
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    margin: 2rem 0;
}

.safety-page .safety-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.safety-page .safety-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.safety-page .safety-banner .btn {
    background: #fff;
    color: #ffd700;
}

.safety-page .safety-banner .btn:hover {
    background: #f8f9fa;
}

/* Terms of Service Page Specific Styles */
.terms-page .terms-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.terms-page .terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.terms-page .terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
}

.terms-page .terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-page .terms-section h2 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffd700;
}

.terms-page .terms-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-page .terms-section ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.terms-page .terms-section li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.terms-page .terms-section a {
    color: #ffd700;
    text-decoration: none;
}

.terms-page .terms-section a:hover {
    text-decoration: underline;
}

/* Sugar Baby App Page Specific Styles */
.app-page .glossary-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.app-page .glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.app-page .glossary-item h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.app-page .glossary-item p {
    color: #666;
    line-height: 1.6;
}

.app-page .download-cta {
    flex-direction: column;
    align-items: center;
}

.app-page .download-cta .app-buttons {
    justify-content: center;
}

.app-page .download-alternative {
    margin-top: 2rem;
    text-align: center;
}

.app-page .download-alternative p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.app-page .download-alternative .btn-outline {
    background: #fff;
    color: #ffd700;
}

.app-page .footer-note {
    margin-top: 1rem;
}

/* Single Post Page Mobile Responsive Styles */
@media (max-width: 992px) {
    .single-post-page .post-hero {
        padding: 6rem 0 4rem;
    }
    
    .single-post-page .post-hero-title {
        font-size: 2.2rem;
    }
    
    .single-post-page .post-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .single-post-page .post-meta-info {
        gap: 1.5rem;
    }
    
    .single-post-page .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .single-post-page .article-sidebar {
        order: 2;
    }
    
    .single-post-page .article-main {
        order: 1;
    }
    
    .single-post-page .stats-comparison {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single-post-page .post-hero {
        padding: 4rem 0 3rem;
    }
    
    .single-post-page .post-hero-content {
        padding: 0 1rem;
    }
    
    .single-post-page .post-hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .single-post-page .post-hero-subtitle {
        font-size: 1rem;
    }
    
    .single-post-page .post-meta-info {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .single-post-page .article-section {
        padding: 2rem 0;
    }
    
    .single-post-page .article-body {
        padding: 1.5rem;
    }
    
    .single-post-page .article-lead {
        font-size: 1.1rem;
    }
    
    .single-post-page .article-body h2 {
        font-size: 1.5rem;
    }
    
    .single-post-page .article-body h3 {
        font-size: 1.2rem;
    }
    
    .single-post-page .stats-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .single-post-page .comparison-card {
        padding: 1.2rem;
    }
    
    .single-post-page .comparison-value {
        font-size: 1.5rem;
    }
    
    .single-post-page .content-banner {
        padding: 2rem 1rem;
    }
    
    .single-post-page .content-banner .banner-title {
        font-size: 1.25rem;
    }
    
    .single-post-page .quote-banner {
        padding: 2rem 1rem;
    }
    
    .single-post-page .quote-content p {
        font-size: 1.1rem;
    }
    
    .single-post-page .article-quote {
        padding: 1.5rem;
    }
    
    .single-post-page .article-quote p {
        font-size: 1rem;
    }
    
    .single-post-page .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .single-post-page .author-avatar {
        margin: 0 auto;
    }
    
    .single-post-page .share-buttons {
        justify-content: center;
    }
    
    .single-post-page .sidebar-stats,
    .single-post-page .sidebar-toc,
    .single-post-page .sidebar-cities {
        display: none;
    }
    
    .single-post-page .sidebar-cta {
        position: sticky;
        top: 2rem;
        z-index: 10;
    }
    
    .single-post-page .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .single-post-page .cta {
        padding: 3rem 1rem;
    }
    
    .single-post-page .cta-title {
        font-size: 1.8rem;
    }
    
    .single-post-page .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .single-post-page .post-hero-title {
        font-size: 1.5rem;
    }
    
    .single-post-page .article-body {
        padding: 1rem;
    }
    
    .single-post-page .article-lead {
        font-size: 1rem;
    }
    
    .single-post-page .article-body h2 {
        font-size: 1.3rem;
    }
    
    .single-post-page .article-body p {
        font-size: 0.95rem;
    }
    
    .single-post-page .sidebar-cta {
        padding: 1.5rem;
    }
}

/* About Us Page Specific Styles */
.about-us-page .team-card {
    text-align: center;
}

.about-us-page .team-card .story-avatar {
    margin: 0 auto 1.5rem;
}

.about-us-page .team-card .role {
    color: #ffd700;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.about-us-page .contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.about-us-page .contact-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
}

.about-us-page .contact-form .form-group {
    margin-bottom: 1rem;
}

.about-us-page .contact-form input,
.about-us-page .contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.about-us-page .contact-form textarea {
    resize: none;
}

.about-us-page .contact-form .btn-primary {
    width: 100%;
}

.about-us-page .contact-info {
    text-align: center;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-us-page .footer-app-buttons {
    justify-content: flex-start;
    margin-top: 1rem;
}

/* About Page Mobile Responsive Styles */
@media (max-width: 992px) {
    .about-page .hero {
        padding: 4rem 0;
    }
    
    .about-page .hero-content {
        text-align: center;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .about-page .hero-image {
        display: none;
    }
    
    .about-page .mission {
        padding: 3rem 0;
    }
    
    .about-page .mission-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-page .mission-image {
        display: none;
    }
    
    .about-page .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-page .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-page .timeline-items {
        padding-left: 0;
    }
    
    .about-page .timeline-item {
        padding-left: 0;
        margin-bottom: 2rem;
    }
    
    .about-page .timeline-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-page .hero-title {
        font-size: 2.2rem;
    }
    
    .about-page .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-page .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-page .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-page .section-header p {
        font-size: 1rem;
    }
    
    .about-page .values-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .about-page .value-card {
        padding: 1.5rem;
    }
    
    .about-page .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-page .team-card {
        text-align: center;
    }
    
    .about-page .team-avatar {
        margin: 0 auto;
    }
    
    .about-page .timeline-content {
        padding: 1.5rem;
    }
    
    .about-page .timeline-year {
        font-size: 1.5rem;
    }
    
    .about-page .mission-content h2 {
        font-size: 1.5rem;
    }
    
    .about-page .cta {
        padding: 3rem 1rem;
    }
    
    .about-page .cta-title {
        font-size: 1.8rem;
    }
    
    .about-page .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-page .hero {
        padding: 3rem 0;
    }
    
    .about-page .hero-title {
        font-size: 1.8rem;
    }
    
    .about-page .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-page .section-header h2 {
        font-size: 1.5rem;
    }
    
    .about-page .value-card {
        padding: 1.2rem;
    }
    
    .about-page .value-icon {
        width: 45px;
        height: 45px;
    }
    
    .about-page .team-avatar {
        width: 100px;
        height: 100px;
    }
    
    .about-page .timeline-content {
        padding: 1rem;
    }
    
    .about-page .timeline-year {
        font-size: 1.3rem;
    }
    
    .about-page .cta-title {
        font-size: 1.5rem;
    }
    
    .about-page .cta-subtitle {
        font-size: 0.95rem;
    }
}

/* Privacy Policy Page Specific Styles */
.privacy-page .navbar-brand a {
    text-decoration: none;
}

.privacy-page .privacy-content {
    padding: 4rem 0;
}

.privacy-page .privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-page .privacy-section {
    margin-bottom: 4rem;
}

.privacy-page .privacy-section h2.section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.privacy-page .privacy-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-page .privacy-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.privacy-page .privacy-section ul {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.privacy-page .privacy-section ul li {
    margin-bottom: 0.75rem;
}

.privacy-page .privacy-section a {
    color: #ffd700;
    text-decoration: none;
}

.privacy-page .privacy-section a:hover {
    text-decoration: underline;
}

/* Blog Page Specific Styles */
.blog-page .blog-hero {
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
}

.blog-page .blog-hero .hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-page .blog-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.blog-page .blog-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog-page .blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-page .blog-main {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Featured Article */
.blog-page .featured-article {
    margin-bottom: 3rem;
}

.blog-page .featured-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.blog-page .featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-page .article-category {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.blog-page .featured-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-page .featured-excerpt {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-page .article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Article Grid */
.blog-page .article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-page .article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-page .article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-page .article-image {
    height: 180px;
    overflow: hidden;
}

.blog-page .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-page .article-card:hover .article-image img {
    transform: scale(1.05);
}

.blog-page .article-body {
    padding: 1.5rem;
}

.blog-page .article-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-page .article-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-page .read-more {
    color: #ffd700;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.blog-page .read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.blog-page .pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.blog-page .pagination-link {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    color: #ffd700;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-page .pagination-link:hover:not(.disabled) {
    background: #ffd700;
    color: #fff;
}

.blog-page .pagination-link.active {
    background: #ffd700;
    color: #fff;
}

.blog-page .pagination-link.disabled {
    color: #999;
    pointer-events: none;
}

/* Blog Sidebar */
.blog-page .blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-page .sidebar-search {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.blog-page .search-input {
    flex: 1;
    padding: 1rem;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.blog-page .search-btn {
    background: #ffd700;
    color: #fff;
    border: none;
    padding: 0 1.25rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.blog-page .search-btn:hover {
    background: #5a6fd6;
}

.blog-page .search-btn svg {
    width: 20px;
    height: 20px;
}

.blog-page .sidebar-section {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.blog-page .sidebar-section h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #eee;
}

.blog-page .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-page .category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.blog-page .category-item:last-child {
    border-bottom: none;
}

.blog-page .category-item:hover {
    color: #ffd700;
}

.blog-page .category-count {
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

.blog-page .popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-page .popular-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.blog-page .popular-item:last-child {
    border-bottom: none;
}

.blog-page .popular-item a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-page .popular-item a:hover {
    color: #ffd700;
}

.blog-page .popular-date {
    display: block;
    color: #999;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.blog-page .sidebar-newsletter {
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: #fff;
}

.blog-page .sidebar-newsletter h3 {
    margin-bottom: 0.5rem;
    border-bottom: none;
    color: #fff;
}

.blog-page .sidebar-newsletter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-page .newsletter-input {
    width: 100%;
    padding: 0.875rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    outline: none;
}

/* Blog Page Mobile Responsive */
@media (max-width: 992px) {
    .blog-page .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-page .blog-sidebar {
        order: 2;
    }
    
    .blog-page .blog-main {
        order: 1;
    }
    
    .blog-page .article-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-page .blog-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .blog-page .blog-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-page .blog-content {
        padding: 2rem 0;
    }
    
    .blog-page .blog-main {
        padding: 1.5rem;
    }
    
    .blog-page .featured-image img {
        height: 200px;
    }
    
    .blog-page .featured-title {
        font-size: 1.6rem;
    }
    
    .blog-page .article-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-page .article-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .blog-page .sidebar-newsletter {
        order: -1;
    }
}

@media (max-width: 480px) {
    .blog-page .blog-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .blog-page .blog-main {
        padding: 1rem;
    }
    
    .blog-page .featured-title {
        font-size: 1.4rem;
    }
    
    .blog-page .article-title {
        font-size: 1.1rem;
    }
    
    .blog-page .pagination-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Review Page Specific Styles */
.review-page .review-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ffd700;
}

.review-page .review-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-page .rating-stars {
    font-size: 1.2rem;
    color: #f59e0b;
}

.review-page .rating-text {
    background: #ffd700;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-page .review-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.review-page .feature-tag {
    background: #e0e7ff;
    color: #4338ca;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.review-page .content-banner {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
    color: #fff;
}

.review-page .content-banner .banner-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.review-page .content-banner .banner-text {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.review-page .banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.review-page .quote-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.review-page .quote-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

/* Review Page Mobile Responsive */
@media (max-width: 768px) {
    .review-page .review-card {
        padding: 1rem;
    }
    
    .review-page .content-banner {
        padding: 2rem 1rem;
    }
    
    .review-page .content-banner .banner-title {
        font-size: 1.4rem;
    }
    
    .review-page .banner-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .review-page .banner-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .review-page .quote-banner {
        padding: 1.5rem 1rem;
    }
    
    .review-page .quote-content p {
        font-size: 1rem;
    }
    
    .review-page .review-features {
        gap: 0.5rem;
    }
    
    .review-page .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .review-page .review-rating {
        flex-wrap: wrap;
    }
    
    .review-page .rating-stars {
        font-size: 1rem;
    }
    
    .review-page .rating-text {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .review-page .content-banner {
        padding: 1.5rem 0.75rem;
    }
    
    .review-page .content-banner .banner-title {
        font-size: 1.2rem;
    }
    
    .review-page .quote-content p {
        font-size: 0.9rem;
    }
}

/* Profile Guide Page Specific Styles */
.profile-guide-page .username-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.profile-guide-page .username-card {
    background: linear-gradient(135deg, #ffd700 0%, #764ba2 100%);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.profile-guide-page .headline-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.profile-guide-page .headline-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.profile-guide-page .headline-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.profile-guide-page .bio-template {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.profile-guide-page .bio-template h4 {
    color: #0ea5e9;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.profile-guide-page .template-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.profile-guide-page .before-after-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.profile-guide-page .before-section,
.profile-guide-page .after-section {
    padding: 1.5rem;
    border-radius: 10px;
}

.profile-guide-page .before-section {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.profile-guide-page .after-section {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.profile-guide-page .before-section h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.profile-guide-page .after-section h4 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.profile-guide-page .match-examples {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.profile-guide-page .match-card {
    background: #fefce8;
    border-left: 4px solid #eab308;
    padding: 1.5rem;
    border-radius: 8px;
}

.profile-guide-page .match-card h4 {
    color: #ca8a04;
    margin-bottom: 0.75rem;
}

.profile-guide-page .mistakes-list {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.profile-guide-page .mistake-item {
    background: #fff;
    border: 2px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 10px;
}

.profile-guide-page .mistake-item h4 {
    color: #dc2626;
    margin-bottom: 0.75rem;
}

.profile-guide-page .mistake-item p {
    margin-bottom: 0.5rem;
}

.profile-guide-page .mistake-item p:last-child {
    margin-bottom: 0;
}

.profile-guide-page .comparison-section {
    margin-bottom: 2rem;
}

.profile-guide-page .comparison-section h3 {
    margin-bottom: 1rem;
}

.profile-guide-page .comparison-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1rem;
}

.profile-guide-page .weak-version,
.profile-guide-page .winning-version {
    padding: 1.5rem;
    border-radius: 10px;
}

.profile-guide-page .weak-version {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.profile-guide-page .winning-version {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.profile-guide-page .weak-version h4,
.profile-guide-page .winning-version h4 {
    margin-bottom: 0.75rem;
}

.profile-guide-page .weak-version h4 {
    color: #dc2626;
}

.profile-guide-page .winning-version h4 {
    color: #16a34a;
}

.profile-guide-page .arrow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffd700;
    font-weight: bold;
}

.profile-guide-page .comparison-explanation {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 8px;
    color: #1e40af;
    font-style: italic;
}

.profile-guide-page .checklist-box {
    background: #fff;
    border: 2px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.profile-guide-page .checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.profile-guide-page .checklist-item:last-child {
    border-bottom: none;
}

.profile-guide-page .checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.profile-guide-page .checklist-item label {
    cursor: pointer;
    font-size: 0.95rem;
}

.profile-guide-page .faq-section {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.profile-guide-page .faq-item {
    background: #fff;
    border: 2px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 10px;
}

.profile-guide-page .faq-item h4 {
    color: #ffd700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.profile-guide-page .faq-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Profile Guide Page Mobile Responsive */
@media (max-width: 768px) {
    .profile-guide-page .username-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .profile-guide-page .username-card {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .profile-guide-page .headline-examples {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .profile-guide-page .headline-card {
        padding: 1rem;
    }
    
    .profile-guide-page .before-after-box {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .profile-guide-page .before-section,
    .profile-guide-page .after-section {
        padding: 1rem;
    }
    
    .profile-guide-page .comparison-box {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .profile-guide-page .arrow-divider {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .profile-guide-page .bio-template {
        padding: 1rem;
    }
    
    .profile-guide-page .match-card {
        padding: 1rem;
    }
    
    .profile-guide-page .mistake-item {
        padding: 1rem;
    }
    
    .profile-guide-page .checklist-box {
        padding: 1rem;
    }
    
    .profile-guide-page .faq-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-guide-page .username-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-guide-page .headline-card h4,
    .profile-guide-page .bio-template h4,
    .profile-guide-page .match-card h4,
    .profile-guide-page .mistake-item h4,
    .profile-guide-page .faq-item h4 {
        font-size: 1rem;
    }
    
    .profile-guide-page .template-text,
    .profile-guide-page .comparison-explanation,
    .profile-guide-page .faq-item p {
        font-size: 0.9rem;
    }
    
    .profile-guide-page .checklist-item label {
        font-size: 0.85rem;
    }
}