/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #305cef;
    border-color: #305cef;
}

.btn-secondary:hover {
    background-color: #305cef;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #305cef;
    border-color: #305cef;
}

.btn-outline:hover {
    background-color: #305cef;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #305cef;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list,
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li,
.nav-menu li {
    margin: 0 1rem;
}

.nav-list a,
.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-menu a:hover {
    color: #305cef;
}

.nav-menu a.active {
    color: #305cef;
    font-weight: 600;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #305cef 0%, #4a6cf7 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

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

.hero-text h1 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
}

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

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

.why-item {
    text-align: center;
    padding: 1.5rem;
}

.why-item h3 {
    color: #305cef;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #305cef;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* STD Dating Info Section */
.std-dating-info {
    padding: 80px 0;
}

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

.info-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.benefits {
    margin-top: 2rem;
}

.benefits h3 {
    color: #305cef;
    margin-bottom: 1rem;
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefits li:before {
    content: "✓";
    color: #305cef;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Who Joins Section */
.who-joins {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.who-joins h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.join-type {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.join-type h3 {
    color: #305cef;
    margin-bottom: 1rem;
}

/* Featured Profiles Section */
.featured-profiles {
    padding: 80px 0;
}

.featured-profiles h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.disclaimer {
    text-align: center;
    font-style: italic;
    margin-bottom: 3rem;
    color: #666;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.profile-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.profile-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.profile-info {
    padding: 1rem;
}

.profile-info h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.profile-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.status {
    background-color: #305cef;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.about-text li:before {
    content: "✓";
    color: #305cef;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Top Cities Section */
.top-cities {
    padding: 80px 0;
}

.top-cities h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.city-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

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

.city-info {
    padding: 1.5rem;
}

.city-info h3 {
    color: #305cef;
    margin-bottom: 1rem;
}

/* App Section */
.app-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.app-text h2 {
    margin-bottom: 1.5rem;
}

.app-features {
    margin: 2rem 0;
}

.app-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.app-features .feature:hover {
    transform: translateX(5px);
}

.app-features .feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: #305cef;
    flex-shrink: 0;
}

.app-features .feature span {
    color: #333;
    font-weight: 500;
}

.app-image {
    text-align: center;
}

.app-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.app-download {
    margin-top: 2rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid #305cef;
    transform: scale(1.05);
}

.pricing-card.featured:before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #305cef;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #305cef;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.payment-info {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Verification Section */
.verification {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.verification-text h2 {
    margin-bottom: 1.5rem;
}

.verification-text h3 {
    color: #305cef;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.quality-services {
    margin-top: 2rem;
}

.quality-services ul {
    list-style: none;
    padding: 0;
}

.quality-services li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.quality-services li:before {
    content: "✓";
    color: #305cef;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.verification-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: #305cef;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.story-content {
    padding: 1.5rem;
    flex: 1;
}

.story-content h3 {
    color: #305cef;
    margin-bottom: 1rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.story-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.story-author div h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.story-author div span {
    color: #666;
    font-size: 0.9rem;
}

.story-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: auto;
}

/* Blog Section */
.blog {
    padding: 80px 0;
}

.blog h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.read-more {
    color: #305cef;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2347d4;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #305cef 0%, #4a6cf7 100%);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.final-cta .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    width: 100%;
}

.cta-content .btn {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #305cef 0%, #4a6cf7 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.blog-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: white;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.featured-blogs {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-blogs h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.blog-card.featured {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-card.featured img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card.featured .blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background: #305cef;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.date {
    color: #666;
}

.blog-card.featured h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card.featured h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card.featured h3 a:hover {
    color: #305cef;
}

.blog-card.featured p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-categories {
    padding: 80px 0;
    background: white;
}

.blog-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #305cef;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #305cef, #4a6cf7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

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

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

.category-card p {
    color: #666;
    line-height: 1.6;
}

.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #305cef 0%, #4a6cf7 100%);
    color: white;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: white;
    color: #305cef;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.nav-list a.active {
    color: #305cef;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #305cef 0%, #4a6cf7 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: white;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.contact-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #305cef, #4a6cf7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

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

.method-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.method-card p {
    color: #666;
    margin-bottom: 20px;
}

.contact-details p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.contact-details strong {
    color: #305cef;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #305cef;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #305cef;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.quick-help {
    padding: 80px 0;
    background: #f8f9fa;
}

.quick-help h2 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.help-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.help-card h3 {
    color: #305cef;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.help-card ul {
    list-style: none;
}

.help-card ul li {
    margin-bottom: 10px;
}

.help-card ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-card ul li a:hover {
    color: #305cef;
}

.community-resources {
    padding: 80px 0;
    background: white;
}

.community-resources h2 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    text-align: center;
    padding: 40px 30px;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #305cef;
    transform: translateY(-5px);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #305cef, #4a6cf7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

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

.resource-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.resource-card p {
    color: #666;
    margin-bottom: 20px;
}

.resource-link {
    color: #305cef;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Safety Page Styles */
.safety-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.safety-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.safety-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.safety-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.quick-tips {
    padding: 80px 0;
    background: #f8f9fa;
}

.quick-tips h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.tip-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.tip-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

.online-safety, .offline-safety {
    padding: 80px 0;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.safety-content.reverse {
    direction: rtl;
}

.safety-content.reverse > * {
    direction: ltr;
}

.safety-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.safety-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #667eea;
}

.safety-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}

.safety-list li:last-child {
    border-bottom: none;
}

.safety-list strong {
    color: #333;
    font-weight: 600;
}

.safety-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.safety-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.safety-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.safety-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.safety-table tr:last-child td {
    border-bottom: none;
}

.privacy-protection {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-protection h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.privacy-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.privacy-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.privacy-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.protection-features h4 {
    color: #333;
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.protection-features ul {
    list-style: none;
    padding: 0;
}

.protection-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.protection-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.ps-features-safety {
    padding: 80px 0;
}

.ps-features-safety h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #333;
}

.section-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-detail {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-detail .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.feature-detail .feature-icon svg {
    width: 25px;
    height: 25px;
    color: white;
}

.feature-detail h3 {
    color: #333;
    margin: 0;
    font-size: 1.3rem;
}

.feature-detail p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-benefits h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-benefits ul {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.feature-benefits li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.red-flags {
    padding: 80px 0;
    background: #f8f9fa;
}

.red-flags h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #333;
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.flag-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #dc3545;
}

.flag-category h3 {
    color: #dc3545;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.flag-list {
    list-style: none;
    padding: 0;
}

.flag-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.flag-list li:last-child {
    border-bottom: none;
}

.flag-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #dc3545;
}

.emergency-resources {
    padding: 80px 0;
}

.emergency-resources h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.resource-card.urgent {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.resource-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.resource-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.emergency-contact {
    background: #dc3545;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.resource-card li:before {
    content: "📞";
    position: absolute;
    left: 0;
}

.safety-checklist {
    padding: 80px 0;
    background: #f8f9fa;
}

.safety-checklist h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #333;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.checklist-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.checklist-section h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-item:hover {
    background-color: #f8f9fa;
}

.checkbox-item.checked {
    background-color: #e8f5e8;
}

.checkbox-item input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input:checked + .checkmark {
    background-color: #667eea;
    border-color: #667eea;
}

.checkbox-item input:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Mobile Responsive Styles for Safety Page */
@media (max-width: 768px) {
    .safety-hero {
        padding: 60px 0 40px;
    }
    
    .safety-hero h1 {
        font-size: 2rem;
    }
    
    .safety-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .safety-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .safety-content.reverse {
        direction: ltr;
    }
    
    .tips-grid,
    .privacy-grid,
    .features-grid,
    .flags-grid,
    .resources-grid,
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-table {
        font-size: 0.9rem;
    }
    
    .safety-table th,
    .safety-table td {
        padding: 10px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #305cef;
}

.footer-section h3 {
    color: #305cef;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #305cef;
    transform: translateY(-2px);
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #ccc;
}

.app-badges img {
    width: 120px;
    height: auto;
    border-radius: 8px;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-values {
    padding: 80px 0;
    background: white;
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.value-card h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.platform-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.platform-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.feature-content h3 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.feature-content h3:first-child {
    margin-top: 0;
}

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

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.community-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.community-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.development-timeline {
    padding: 80px 0;
    background: white;
}

.development-timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e74c3c;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #e74c3c;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 0 2rem;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.member-demographics {
    padding: 80px 0;
    background: #f8f9fa;
}

.member-demographics h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.demographics-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.demographics-text h3 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.member-list {
    list-style: none;
    padding: 0;
}

.member-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    line-height: 1.6;
}

.member-list li:last-child {
    border-bottom: none;
}

.member-list strong {
    color: #e74c3c;
    font-weight: 600;
}

.demographics-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.technology-security {
    padding: 80px 0;
    background: white;
}

.technology-security h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.tech-item h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-item p {
    color: #666;
    line-height: 1.6;
}

.success-impact {
    padding: 80px 0;
    background: #f8f9fa;
}

.success-impact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.impact-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.impact-text blockquote {
    background: white;
    padding: 2rem;
    border-left: 4px solid #e74c3c;
    border-radius: 10px;
    margin: 2rem 0;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.impact-text cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: #e74c3c;
    font-style: normal;
}

.impact-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.future-vision {
    padding: 80px 0;
    background: white;
}

.future-vision h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.vision-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.future-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.goal-item h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.goal-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list,
    .nav-menu {
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-list li,
    .nav-menu li {
        margin: 0;
        text-align: center;
    }

    .nav-list a,
    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .nav-buttons {
        display: none;
    }

    .header-cta {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .features-grid,
    .why-choose-grid,
    .steps-grid,
    .who-joins-grid,
    .cities-grid,
    .pricing-grid,
    .stories-grid,
    .blog-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .info-content,
    .about-content,
    .app-content,
    .verification-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profiles-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-cta .btn {
        display: inline-block;
        width: auto;
        margin-bottom: 0;
        margin-right: 1rem;
    }

    /* About Page Mobile Styles */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .mission-values h2,
    .platform-features h2,
    .community-stats h2,
    .development-timeline h2,
    .member-demographics h2,
    .technology-security h2,
    .success-impact h2,
    .future-vision h2 {
        font-size: 2rem;
    }

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

    .features-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }

    .timeline-year {
        position: absolute;
        left: -25px;
        min-width: 60px;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

    .timeline-content {
        margin: 0;
        margin-left: 1rem;
    }

    .demographics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .impact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .future-goals {
        grid-template-columns: 1fr;
    }

    .member-list {
        overflow-x: auto;
    }

    .member-list li {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .profiles-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .profile-card img {
        height: 150px;
    }

    .feature-item,
    .step,
    .join-type,
    .pricing-card,
    .faq-item {
        padding: 1.5rem;
    }

    .city-info,
    .story-content,
    .blog-content {
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item,
.step,
.profile-card,
.city-card,
.pricing-card,
.story-card,
.blog-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
a:focus {
    outline: 2px solid #305cef;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .hero-cta,
    .final-cta,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* App Page Styles */
.app-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.app-overview h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.app-overview > .container > p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.app-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.app-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.app-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.app-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* App Features */
.app-features {
    padding: 80px 0;
    background: white;
}

.app-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

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

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

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Platform Comparison */
.platform-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.platform-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: white;
}

.download-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.download-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-info h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.system-requirements {
    margin: 40px 0;
}

.system-requirements h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.requirement-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.requirement-item h5 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.requirement-item ul {
    list-style: none;
    padding: 0;
}

.requirement-item li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.requirement-item li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

.download-btn img {
    border-radius: 8px;
}

/* User Experience */
.user-experience {
    padding: 80px 0;
    background: #f8f9fa;
}

.user-experience h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.ux-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.ux-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.ux-item p {
    color: #666;
    line-height: 1.6;
}

/* Security & Privacy */
.security-privacy {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.security-privacy h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.security-feature {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.security-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.security-feature p {
    color: #bdc3c7;
    line-height: 1.6;
}

/* Community Features */
.community-features {
    padding: 80px 0;
    background: white;
}

.community-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.community-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.community-list h4 {
    font-size: 1.3rem;
    color: #e74c3c;
    margin: 30px 0 20px 0;
}

.community-list ul {
    list-style: none;
    padding: 0;
}

.community-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.community-list li:last-child {
    border-bottom: none;
}

.community-list strong {
    color: #2c3e50;
}

.community-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* App Performance */
.app-performance {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.app-performance h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.metric-card {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.metric-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.metric-card p {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.6;
}

.metric-value {
    font-size: 3rem;
    font-weight: bold;
    color: #f39c12;
}

/* Customer Support */
.customer-support {
    padding: 80px 0;
    background: #f8f9fa;
}

.customer-support h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-info h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.support-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.support-option {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.support-option h4 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.support-option p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.support-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.testimonial blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 1.1rem;
}

.testimonial cite {
    color: #e74c3c;
    font-weight: 600;
    font-style: normal;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
    padding-right: 30px;
}

.faq-item h3:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    display: block;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.cta-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content {
    text-align: left;
}

.cta-image {
    text-align: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #e74c3c;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-overview h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .app-overview > .container > p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 15px;
    }
    
    .app-intro,
    .download-content,
    .community-content,
    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .app-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid,
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .download-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .app-content h2,
    .app-features h2,
    .platform-comparison h2,
    .download-section h2 {
        font-size: 2rem;
    }
    
    /* Blog Page Mobile Styles */
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .featured-blogs h2,
    .blog-categories h2,
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured .blog-content {
        padding: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.article-meta {
    margin-bottom: 2rem;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.category {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.article-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-image {
    margin-bottom: 2rem;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

.article-text {
    line-height: 1.8;
    color: #333;
}

.article-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

.article-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.article-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-text ul, .article-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-text li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.article-text blockquote {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

.article-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.article-tags h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #667eea;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.article-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.article-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.article-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-post:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.related-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.post-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: #2c3e50;
}

.post-info .date {
    font-size: 0.85rem;
    color: #666;
}

.stats-widget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Article Page Mobile Styles */
@media (max-width: 768px) {
    .article-header {
        padding: 100px 0 40px;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .article-text h2 {
        font-size: 1.6rem;
    }
    
    .article-text h3 {
        font-size: 1.3rem;
    }
    
    .sidebar {
        order: -1;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .related-post {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post img {
        width: 100%;
        height: 150px;
    }
}

/* Herpes Dating Page Specific Styles */
.herpes-dating-content {
    grid-template-columns: 1fr !important;
    max-width: 1000px;
    margin: 0 auto;
}

.herpes-dating-content .main-content {
    max-width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.herpes-dating-content .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #305cef 0%, #4a6cf7 50%, #667eea 100%);
    z-index: 1;
}

.herpes-dating-content .article-text {
    position: relative;
    z-index: 2;
}

/* Herpes stats highlight section */
.herpes-stats-highlight {
    background: linear-gradient(135deg, #305cef 0%, #4a6cf7 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 2rem 0 3rem;
    box-shadow: 0 15px 40px rgba(48, 92, 239, 0.3);
    position: relative;
    overflow: hidden;
}

.herpes-stats-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    color: white;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
    text-shadow: none;
}

.stat-box p {
    font-size: 1rem;
    margin: 0;
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-box h3 {
        font-size: 2.2rem;
    }
    
    .stat-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .herpes-stats-highlight {
        padding: 2rem;
    }
}

/* Herpes dating page specific text colors */
body:has(.herpes-dating-content) .article-header .article-subtitle {
    color: white !important;
}

body:has(.herpes-dating-content) .article-header .article-info .date {
    color: white !important;
}

/* Herpes dating CTA section */
.herpes-dating-cta {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border: 2px solid #305cef;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.herpes-dating-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(48, 92, 239, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.herpes-dating-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #305cef;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(48, 92, 239, 0.1);
}

.herpes-dating-cta > .cta-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(48, 92, 239, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(48, 92, 239, 0.15);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-item span:last-child {
    font-weight: 600;
    color: #333;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 1rem;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #305cef 0%, #4a6cf7 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(48, 92, 239, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(48, 92, 239, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-cta {
    background: transparent;
    color: #305cef;
    padding: 1rem 2.5rem;
    border: 2px solid #305cef;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
    background: #305cef;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-disclaimer {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .herpes-dating-cta {
        padding: 2rem;
    }
    
    .herpes-dating-cta h3 {
        font-size: 2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        max-width: 300px;
    }
}

/* Enhanced visual elements for herpes dating page */
.herpes-dating-content .article-text h2 {
    color: #333;
    border-bottom: 3px solid #305cef;
    padding-bottom: 0.5rem;
    margin: 3rem 0 1.5rem;
    position: relative;
    font-size: 2.2rem;
    font-weight: 700;
}

.herpes-dating-content .article-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #305cef 0%, #4a6cf7 100%);
    border-radius: 2px;
}

/* Modern card design for content sections */
.herpes-dating-content .article-text > div,
.herpes-dating-content .article-text > section {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #305cef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
}

.herpes-dating-content .article-text > div:hover,
.herpes-dating-content .article-text > section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Enhanced statistics display */
.herpes-dating-content .stats-list {
    background: linear-gradient(135deg, #305cef 0%, #4a6cf7 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 15px 35px rgba(48, 92, 239, 0.3);
    position: relative;
    overflow: hidden;
}

.herpes-dating-content .stats-list::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.herpes-dating-content .stats-list li {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.herpes-dating-content .stats-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Enhanced profile showcase */
.herpes-dating-content .profile-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid #e9ecef;
}

.herpes-dating-content .dating-profile {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.herpes-dating-content .dating-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: #305cef;
}

/* Enhanced CTA section */
.herpes-dating-content .cta-section {
    background: linear-gradient(135deg, #305cef 0%, #4a6cf7 100%);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
    box-shadow: 0 20px 50px rgba(48, 92, 239, 0.3);
    position: relative;
    overflow: hidden;
}

.herpes-dating-content .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.herpes-dating-content .cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.herpes-dating-content .cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.herpes-dating-content .btn-large {
    background: white;
    color: #305cef;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.herpes-dating-content .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Enhanced fact list */
.herpes-dating-content .fact-list {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4ade80;
    margin: 2rem 0;
}

.herpes-dating-content .fact-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.herpes-dating-content .fact-list li:last-child {
    border-bottom: none;
}

.herpes-dating-content .fact-list li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Enhanced tips list */
.herpes-dating-content .tips-list {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f39c12;
    margin: 2rem 0;
}

.herpes-dating-content .tips-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(243, 156, 18, 0.2);
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
}

.herpes-dating-content .tips-list li:last-child {
    border-bottom: none;
}

.herpes-dating-content .tips-list li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    top: 1rem;
}

/* Success stories enhancement */
.herpes-dating-content .success-stories {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border-left: 4px solid #4ade80;
}

.herpes-dating-content .story {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e8f5e8;
    position: relative;
}

.herpes-dating-content .story::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #4ade80;
    font-family: serif;
    line-height: 1;
}

.herpes-dating-content .story h4 {
    color: #2d5a2d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.herpes-dating-content .story p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.herpes-dating-content .story .author {
    font-weight: 600;
    color: #4ade80;
    font-style: normal;
}

/* Table wrapper for responsive design */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    -webkit-overflow-scrolling: touch;
}

.info-table, .disclosure-table, .treatment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    min-width: 600px; /* Ensure minimum width for proper display */
}

.info-table th, .disclosure-table th, .treatment-table th {
    background: #305cef;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.info-table td, .disclosure-table td, .treatment-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.info-table tr:last-child td, .disclosure-table tr:last-child td, .treatment-table tr:last-child td {
    border-bottom: none;
}

.stats-list {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.stats-list li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.numbered-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.numbered-list li {
    counter-increment: step-counter;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    padding-left: 4rem;
}

.numbered-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: #305cef;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.profile-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.dating-profile {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.dating-profile:hover {
    transform: translateY(-5px);
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.profile-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.profile-info h4 {
    margin: 0;
    color: #305cef;
    font-size: 1.1rem;
}

.location {
    color: #666;
    font-size: 0.9rem;
}

.profile-content p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.script-examples {
    margin: 2rem 0;
}

.script {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #305cef;
}

.script h4 {
    color: #305cef;
    margin-bottom: 1rem;
}

.platform-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.platform {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.platform h4 {
    color: #305cef;
    margin-bottom: 1rem;
}

.tips-list {
    background: #e8f4fd;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.tips-list li {
    margin: 1rem 0;
    padding-left: 1rem;
}

.success-stories {
    margin: 2rem 0;
}

.story {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #28a745;
}

.story h4 {
    color: #28a745;
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #305cef 0%, #667eea 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    margin-bottom: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.fact-list {
    list-style: none;
    padding: 0;
}

.fact-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.fact-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.fact-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .profile-showcase {
        grid-template-columns: 1fr;
    }
    
    .platform-comparison {
        grid-template-columns: 1fr;
    }
    
    .info-table, .disclosure-table, .treatment-table {
        font-size: 0.9rem;
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .info-table th, .disclosure-table th, .treatment-table th,
    .info-table td, .disclosure-table td, .treatment-table td {
        padding: 0.75rem;
        min-width: 120px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Ensure table headers and cells are properly sized */
    .disclosure-table th:first-child,
    .disclosure-table td:first-child {
        min-width: 140px;
    }
    
    .disclosure-table th:nth-child(2),
    .disclosure-table td:nth-child(2),
    .disclosure-table th:nth-child(3),
    .disclosure-table td:nth-child(3) {
        min-width: 160px;
    }
    
    .disclosure-table th:last-child,
    .disclosure-table td:last-child {
        min-width: 180px;
    }
    
    .numbered-list li {
        padding-left: 3rem;
    }
    
    .numbered-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .article-text .lead {
        font-size: 1.1rem;
    }
    
    .article-text h2 {
        font-size: 1.4rem;
    }
    
    .article-text h3 {
        font-size: 1.2rem;
    }
    
    .article-cta {
        padding: 1.5rem;
    }
    
    .article-cta h3 {
        font-size: 1.5rem;
    }
}