/* Uber Uns Page Styles - All styles in one file */
/* 所有样式统一管理，避免冲突 */

/* 基础样式 - 仅针对uber-uns页面 */
.uber-uns-page {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.uber-uns-page * {
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Container */
.uber-uns-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.uber-uns-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: #fff;
}

.uber-uns-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.uber-uns-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 按钮样式 - 仅针对uber-uns页面 */
.uber-uns-page .uber-uns-btn {
    display: inline-block;
    background: #fff;
    color: #1e3c72;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.uber-uns-page .uber-uns-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Content Sections */
.uber-uns-section {
    padding: 70px 20px;
}

.uber-uns-section.gray-bg {
    background: #f8f9fa;
}

.uber-uns-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    text-align: center;
}

.uber-uns-section .section-intro {
    font-size: 17px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Two Column Layout */
.uber-uns-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.uber-uns-row.reverse {
    flex-direction: row-reverse;
}

.uber-uns-col {
    flex: 1;
}

.uber-uns-col h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 15px;
}

.uber-uns-col p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.uber-uns-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Steps Section */
.uber-uns-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.uber-uns-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.uber-uns-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.uber-uns-step h3 {
    font-size: 22px;
    color: #1e3c72;
    margin-bottom: 15px;
}

.uber-uns-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Features Grid */
.uber-uns-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.uber-uns-feature {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.uber-uns-feature h3 {
    font-size: 22px;
    color: #1e3c72;
    margin-bottom: 12px;
}

.uber-uns-feature p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.uber-uns-cta {
    background: #2a5298;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.uber-uns-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.uber-uns-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.uber-uns-page .uber-uns-cta .uber-uns-btn {
    background: #fff;
    color: #2a5298;
    border-color: #fff;
}

.uber-uns-page .uber-uns-cta .uber-uns-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Final Section */
.uber-uns-final {
    background: #1e3c72;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.uber-uns-final h2 {
    color: #fff;
    margin-bottom: 20px;
}

.uber-uns-final p {
    font-size: 17px;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.uber-uns-page .uber-uns-final .uber-uns-btn {
    background: #fff;
    color: #1e3c72;
    border-color: #fff;
    margin-top: 10px;
}

.uber-uns-page .uber-uns-final .uber-uns-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .uber-uns-hero {
        padding: 80px 15px 60px;
    }
    
    .uber-uns-hero h1 {
        font-size: 28px;
    }
    
    .uber-uns-hero p {
        font-size: 16px;
    }
    
    .uber-uns-section {
        padding: 50px 15px;
    }
    
    .uber-uns-section h2 {
        font-size: 26px;
    }
    
    .uber-uns-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .uber-uns-row.reverse {
        flex-direction: column;
    }
    
    .uber-uns-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .uber-uns-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .uber-uns-cta,
    .uber-uns-final {
        padding: 60px 15px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .uber-uns-hero h1 {
        font-size: 24px;
    }
    
    .uber-uns-hero p {
        font-size: 15px;
    }
    
    .uber-uns-section h2 {
        font-size: 22px;
    }
    
    .uber-uns-col h3 {
        font-size: 20px;
    }
    
    .uber-uns-col p,
    .uber-uns-feature p,
    .uber-uns-step p {
        font-size: 14px;
    }
    
    .uber-uns-page .uber-uns-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}


/* ========================================
   Sugar Baby Page Styles
   ======================================== */

/* 基础样式 - 仅针对sugar-baby页面 */
.sugar-baby-page {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Hero Section - Sugar Baby */
.sugar-baby-hero {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: #fff;
}

.sugar-baby-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sugar-baby-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 按钮样式 - Sugar Baby页面 */
.sugar-baby-page .sugar-baby-btn {
    display: inline-block;
    background: #fff;
    color: #e91e63;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sugar-baby-page .sugar-baby-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Content Sections - Sugar Baby */
.sugar-baby-section {
    padding: 70px 20px;
}

.sugar-baby-section.pink-bg {
    background: #fce4ec;
}

.sugar-baby-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 20px;
    text-align: center;
}

.sugar-baby-section .section-intro {
    font-size: 17px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Two Column Layout - Sugar Baby */
.sugar-baby-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.sugar-baby-row.reverse {
    flex-direction: row-reverse;
}

.sugar-baby-col {
    flex: 1;
}

.sugar-baby-col h3 {
    font-size: 26px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 15px;
}

.sugar-baby-col p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.sugar-baby-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Statistics Grid - Sugar Baby */
.sugar-baby-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.sugar-baby-stat {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 4px solid #e91e63;
}

.sugar-baby-stat h3 {
    font-size: 36px;
    color: #e91e63;
    margin-bottom: 10px;
    font-weight: 700;
}

.sugar-baby-stat p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Types Grid - Sugar Baby */
.sugar-baby-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.sugar-baby-type {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #e91e63;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sugar-baby-type h3 {
    font-size: 22px;
    color: #c2185b;
    margin-bottom: 12px;
}

.sugar-baby-type p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section - Sugar Baby */
.sugar-baby-cta {
    background: #e91e63;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.sugar-baby-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.sugar-baby-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.sugar-baby-page .sugar-baby-cta .sugar-baby-btn {
    background: #fff;
    color: #e91e63;
    border-color: #fff;
}

.sugar-baby-page .sugar-baby-cta .sugar-baby-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Cities Section - Sugar Baby */
.sugar-baby-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.sugar-baby-city {
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.sugar-baby-city:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.sugar-baby-city h3 {
    font-size: 22px;
    color: #e91e63;
    margin-bottom: 10px;
}

.sugar-baby-city p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design - Tablet - Sugar Baby */
@media (max-width: 768px) {
    .sugar-baby-hero {
        padding: 80px 15px 60px;
    }
    
    .sugar-baby-hero h1 {
        font-size: 28px;
    }
    
    .sugar-baby-hero p {
        font-size: 16px;
    }
    
    .sugar-baby-section {
        padding: 50px 15px;
    }
    
    .sugar-baby-section h2 {
        font-size: 26px;
    }
    
    .sugar-baby-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .sugar-baby-row.reverse {
        flex-direction: column;
    }
    
    .sugar-baby-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sugar-baby-types {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sugar-baby-cities {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sugar-baby-cta {
        padding: 60px 15px;
    }
}

/* Responsive Design - Mobile - Sugar Baby */
@media (max-width: 480px) {
    .sugar-baby-hero h1 {
        font-size: 24px;
    }
    
    .sugar-baby-hero p {
        font-size: 15px;
    }
    
    .sugar-baby-section h2 {
        font-size: 22px;
    }
    
    .sugar-baby-col h3 {
        font-size: 20px;
    }
    
    .sugar-baby-col p,
    .sugar-baby-type p,
    .sugar-baby-city p {
        font-size: 14px;
    }
    
    .sugar-baby-page .sugar-baby-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}


/* ========================================
   Sugar Daddy Page Styles
   ======================================== */

/* 基础样式 - 仅针对sugar-daddy页面 */
.sugar-daddy-page {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Hero Section - Sugar Daddy */
.sugar-daddy-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: #fff;
}

.sugar-daddy-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sugar-daddy-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 按钮样式 - Sugar Daddy页面 */
.sugar-daddy-page .sugar-daddy-btn {
    display: inline-block;
    background: #fff;
    color: #2c3e50;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sugar-daddy-page .sugar-daddy-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Content Sections - Sugar Daddy */
.sugar-daddy-section {
    padding: 70px 20px;
}

.sugar-daddy-section.gray-bg {
    background: #ecf0f1;
}

.sugar-daddy-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.sugar-daddy-section .section-intro {
    font-size: 17px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Two Column Layout - Sugar Daddy */
.sugar-daddy-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.sugar-daddy-row.reverse {
    flex-direction: row-reverse;
}

.sugar-daddy-col {
    flex: 1;
}

.sugar-daddy-col h3 {
    font-size: 26px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
}

.sugar-daddy-col p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.sugar-daddy-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Statistics Grid - Sugar Daddy */
.sugar-daddy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.sugar-daddy-stat {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 4px solid #34495e;
}

.sugar-daddy-stat h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.sugar-daddy-stat p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Types Grid - Sugar Daddy */
.sugar-daddy-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.sugar-daddy-type {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #34495e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sugar-daddy-type h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.sugar-daddy-type p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section - Sugar Daddy */
.sugar-daddy-cta {
    background: #34495e;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.sugar-daddy-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.sugar-daddy-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.sugar-daddy-page .sugar-daddy-cta .sugar-daddy-btn {
    background: #fff;
    color: #34495e;
    border-color: #fff;
}

.sugar-daddy-page .sugar-daddy-cta .sugar-daddy-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Benefits Grid - Sugar Daddy */
.sugar-daddy-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.sugar-daddy-benefit {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.sugar-daddy-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.sugar-daddy-benefit h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.sugar-daddy-benefit p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Responsive Design - Tablet - Sugar Daddy */
@media (max-width: 768px) {
    .sugar-daddy-hero {
        padding: 80px 15px 60px;
    }
    
    .sugar-daddy-hero h1 {
        font-size: 28px;
    }
    
    .sugar-daddy-hero p {
        font-size: 16px;
    }
    
    .sugar-daddy-section {
        padding: 50px 15px;
    }
    
    .sugar-daddy-section h2 {
        font-size: 26px;
    }
    
    .sugar-daddy-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .sugar-daddy-row.reverse {
        flex-direction: column;
    }
    
    .sugar-daddy-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sugar-daddy-types {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sugar-daddy-benefits {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sugar-daddy-cta {
        padding: 60px 15px;
    }
}

/* Responsive Design - Mobile - Sugar Daddy */
@media (max-width: 480px) {
    .sugar-daddy-hero h1 {
        font-size: 24px;
    }
    
    .sugar-daddy-hero p {
        font-size: 15px;
    }
    
    .sugar-daddy-section h2 {
        font-size: 22px;
    }
    
    .sugar-daddy-col h3 {
        font-size: 20px;
    }
    
    .sugar-daddy-col p,
    .sugar-daddy-type p,
    .sugar-daddy-benefit p {
        font-size: 14px;
    }
    
    .sugar-daddy-page .sugar-daddy-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}


/* ========================================
   Blog Page Styles
   ======================================== */

/* 基础样式 - 仅针对blog页面 */
.blog-page {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    padding: 120px 20px 60px;
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

.blog-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero .blog-meta {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 15px;
}

/* Blog Content Container */
.blog-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #16a085;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1abc9c;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.blog-content strong {
    color: #16a085;
    font-weight: 600;
}

/* Blog Lists */
.blog-content ul,
.blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

/* Blog Image */
.blog-image {
    margin: 40px 0;
    text-align: center;
}

.blog-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-image-caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Blog Table */
.blog-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.blog-table thead {
    background: #16a085;
    color: #fff;
}

.blog-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.blog-table td {
    padding: 15px;
    border-bottom: 1px solid #ecf0f1;
    font-size: 16px;
    color: #444;
}

.blog-table tbody tr:hover {
    background: #f8f9fa;
}

/* Blog Info Box */
.blog-info-box {
    background: #e8f8f5;
    border-left: 4px solid #16a085;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.blog-info-box h3 {
    color: #16a085;
    margin-top: 0;
    font-size: 20px;
}

.blog-info-box p {
    margin-bottom: 10px;
}

/* Blog Warning Box */
.blog-warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.blog-warning-box h3 {
    color: #856404;
    margin-top: 0;
    font-size: 20px;
}

/* Blog CTA */
.blog-cta {
    background: #16a085;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    margin: 50px 0;
    color: #fff;
}

.blog-cta h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
}

.blog-cta p {
    color: #fff;
    margin-bottom: 25px;
    font-size: 17px;
}

.blog-page .blog-cta-btn {
    display: inline-block;
    background: #fff;
    color: #16a085;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.blog-page .blog-cta-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Blog Intro */
.blog-intro {
    font-size: 19px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 15px 50px;
        margin-top: 15px;
    }
    
    .blog-hero h1 {
        font-size: 28px;
    }
    
    .blog-content {
        padding: 40px 15px;
    }
    
    .blog-content h2 {
        font-size: 24px;
    }
    
    .blog-content h3 {
        font-size: 20px;
    }
    
    .blog-content p,
    .blog-content li {
        font-size: 16px;
    }
    
    .blog-table {
        font-size: 14px;
    }
    
    .blog-table th,
    .blog-table td {
        padding: 10px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 24px;
    }
    
    .blog-content h2 {
        font-size: 22px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }
    
    .blog-content p,
    .blog-content li {
        font-size: 15px;
    }
    
    .blog-table {
        font-size: 13px;
    }
    
    .blog-table th,
    .blog-table td {
        padding: 8px;
    }
    
    .blog-cta {
        padding: 30px 20px;
    }
    
    .blog-cta h3 {
        font-size: 22px;
    }
}


/* ========================================
   FAQ Page Styles
   ======================================== */

/* 基础样式 - 仅针对faq页面 */
.faq-page {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: #fff;
}

.faq-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-hero p {
    font-size: 18px;
    opacity: 0.95;
    margin-top: 10px;
}

/* FAQ Content Container */
.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.faq-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #8e44ad;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #9b59b6;
    line-height: 1.3;
}

.faq-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #9b59b6;
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.faq-content strong {
    color: #8e44ad;
    font-weight: 600;
}

/* FAQ Intro */
.faq-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f4fc;
    border-radius: 8px;
    border-left: 4px solid #9b59b6;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 35px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(142, 68, 173, 0.08);
    border-left: 4px solid #9b59b6;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.15);
    transform: translateY(-2px);
}

.faq-item h3 {
    margin-top: 0;
    color: #8e44ad;
    font-size: 20px;
}

/* FAQ Lists */
.faq-content ul,
.faq-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.faq-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.faq-content ul li {
    list-style-type: disc;
}

.faq-content ol li {
    list-style-type: decimal;
}

/* FAQ Image */
.faq-image {
    margin: 40px 0;
    text-align: center;
}

.faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-image-caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* FAQ Table */
.faq-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(142, 68, 173, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-table thead {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: #fff;
}

.faq-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.faq-table td {
    padding: 15px;
    border-bottom: 1px solid #f0e6f6;
    font-size: 16px;
    color: #444;
}

.faq-table tbody tr:hover {
    background: #f8f4fc;
}

.faq-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Info Box */
.faq-info-box {
    background: #f8f4fc;
    border-left: 4px solid #9b59b6;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.faq-info-box h3 {
    color: #8e44ad;
    margin-top: 0;
    font-size: 20px;
}

.faq-info-box p {
    margin-bottom: 10px;
}

/* FAQ Warning Box */
.faq-warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.faq-warning-box h3 {
    color: #856404;
    margin-top: 0;
    font-size: 20px;
}

/* FAQ CTA */
.faq-cta {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    margin: 50px 0;
    color: #fff;
}

.faq-cta h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
}

.faq-cta p {
    color: #fff;
    margin-bottom: 25px;
    font-size: 17px;
}

.faq-page .faq-cta-btn {
    display: inline-block;
    background: #fff;
    color: #8e44ad;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.faq-page .faq-cta-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 15px 50px;
    }
    
    .faq-hero h1 {
        font-size: 28px;
    }
    
    .faq-hero p {
        font-size: 16px;
    }
    
    .faq-content {
        padding: 40px 15px;
    }
    
    .faq-content h2 {
        font-size: 26px;
        margin-top: 40px;
    }
    
    .faq-content h3 {
        font-size: 20px;
    }
    
    .faq-content p,
    .faq-content li {
        font-size: 16px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-table {
        font-size: 14px;
    }
    
    .faq-table th,
    .faq-table td {
        padding: 10px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 24px;
    }
    
    .faq-hero p {
        font-size: 15px;
    }
    
    .faq-content h2 {
        font-size: 22px;
    }
    
    .faq-content h3 {
        font-size: 18px;
    }
    
    .faq-content p,
    .faq-content li {
        font-size: 15px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-table {
        font-size: 13px;
    }
    
    .faq-table th,
    .faq-table td {
        padding: 8px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta h3 {
        font-size: 22px;
    }
}


/* ========================================
   Blogs Page Styles
   ======================================== */

/* 基础样式 - 仅针对blogs页面 */
.blogs-page {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #f9f9f9;
}

/* Blogs Hero Section */
.blogs-hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: #fff;
}

.blogs-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blogs-hero p {
    font-size: 18px;
    opacity: 0.95;
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Blogs Content Container */
.blogs-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blogs-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
}

/* Blogs Intro */
.blogs-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.blogs-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Featured Article */
.blogs-featured {
    margin-bottom: 60px;
}

.blogs-featured-card {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blogs-featured-card:hover {
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.blogs-featured-image {
    flex: 1;
    min-width: 400px;
}

.blogs-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogs-featured-content {
    flex: 1;
    padding: 40px;
}

.blogs-category {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blogs-featured-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blogs-featured-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blogs-featured-content h3 a:hover {
    color: #e74c3c;
}

.blogs-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.blogs-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.blogs-read-more {
    display: inline-block;
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blogs-read-more:hover {
    color: #c0392b;
    transform: translateX(5px);
}

/* Blog Categories */
.blogs-categories {
    margin-bottom: 60px;
}

.blogs-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.blogs-category-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blogs-category-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.blogs-category-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.blogs-category-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Blog Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blogs-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blogs-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.blogs-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blogs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blogs-card:hover .blogs-card-image img {
    transform: scale(1.05);
}

.blogs-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.blogs-card-content {
    padding: 25px;
}

.blogs-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blogs-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.blogs-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.blogs-card-link {
    display: inline-block;
    color: #e74c3c;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blogs-card-link:hover {
    color: #c0392b;
    transform: translateX(3px);
}

/* Popular Topics */
.blogs-topics {
    margin-bottom: 60px;
}

.blogs-topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.blogs-topic-tag {
    display: inline-block;
    background: #fff;
    color: #555;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.blogs-topic-tag:hover {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
    transform: translateY(-2px);
}

/* Why Read Section */
.blogs-why {
    margin-bottom: 60px;
}

.blogs-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blogs-why-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.blogs-why-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.blogs-why-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.blogs-why-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.blogs-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 50px 40px;
    text-align: center;
    border-radius: 12px;
    margin: 60px 0;
    color: #fff;
}

.blogs-cta h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 32px;
}

.blogs-cta p {
    color: #fff;
    margin-bottom: 30px;
    font-size: 17px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blogs-cta-btn {
    display: inline-block;
    background: #fff;
    color: #e74c3c;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.blogs-cta-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Newsletter Section */
.blogs-newsletter {
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.blogs-newsletter h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.blogs-newsletter p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.blogs-newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 15px;
    gap: 10px;
}

.blogs-newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.blogs-newsletter-input:focus {
    border-color: #e74c3c;
}

.blogs-newsletter-btn {
    background: #e74c3c;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blogs-newsletter-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.blogs-newsletter-note {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .blogs-hero {
        padding: 60px 15px 50px;
    }
    
    .blogs-hero h1 {
        font-size: 32px;
    }
    
    .blogs-hero p {
        font-size: 16px;
    }
    
    .blogs-content {
        padding: 40px 15px;
    }
    
    .blogs-content h2 {
        font-size: 26px;
        margin-top: 40px;
    }
    
    .blogs-featured-card {
        flex-direction: column;
        gap: 0;
    }
    
    .blogs-featured-image {
        min-width: 100%;
        height: 250px;
    }
    
    .blogs-featured-content {
        padding: 25px;
    }
    
    .blogs-featured-content h3 {
        font-size: 22px;
    }
    
    .blogs-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blogs-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blogs-newsletter-form {
        flex-direction: column;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .blogs-hero h1 {
        font-size: 26px;
    }
    
    .blogs-hero p {
        font-size: 15px;
    }
    
    .blogs-content h2 {
        font-size: 22px;
    }
    
    .blogs-featured-content h3 {
        font-size: 20px;
    }
    
    .blogs-category-grid {
        grid-template-columns: 1fr;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .blogs-why-grid {
        grid-template-columns: 1fr;
    }
    
    .blogs-cta {
        padding: 40px 20px;
    }
    
    .blogs-cta h2 {
        font-size: 24px;
    }
    
    .blogs-newsletter {
        padding: 30px 20px;
    }
}


/* ========================================
   Blogs Page Styles - Dating Tipps
   ======================================== */

/* Blogs Page Body */
.blogs-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    background: #ffffff;
}

.blogs-page * {
    box-sizing: border-box;
}

/* Blogs Container */
.blogs-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Blogs Hero Section */
.blogs-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 90px 20px 70px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
}

.blogs-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.blogs-hero-subtitle {
    font-size: 19px;
    margin: 0;
    opacity: 0.95;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Blogs List Section */
.blogs-list-section {
    padding: 0 0 80px 0;
}

/* Blogs Grid - 3 columns */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

/* Blog Card Image */
.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

/* Blog Card Content */
.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 15px 0;
    line-height: 1.4;
    min-height: 56px;
}

.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* Blog Card Meta */
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8ecf1;
}

.blog-date,
.blog-read-time {
    font-size: 13px;
    color: #718096;
}

/* Blog Read More Link */
.blog-read-more {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* Blogs CTA Section */
.blogs-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 45px;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    margin: 60px 0;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.blogs-cta-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.blogs-cta-section p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 20px 0;
    opacity: 0.95;
    color: #ffffff;
}

.blogs-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.blogs-cta-btn {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blogs-cta-btn.primary {
    background: #ffffff;
    color: #667eea;
    border-color: #ffffff;
}

.blogs-cta-btn.primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.blogs-cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.blogs-cta-btn.secondary:hover {
    background: #ffffff;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Mobile Responsive Styles for Blogs Page
   ======================================== */

@media screen and (max-width: 768px) {
    /* Blogs Hero */
    .blogs-hero {
        padding: 60px 15px 50px;
        margin-bottom: 40px;
    }

    .blogs-hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .blogs-hero-subtitle {
        font-size: 16px;
    }

    /* Blogs Container */
    .blogs-container {
        padding: 0 15px;
    }

    /* Blogs List Section */
    .blogs-list-section {
        padding: 0 0 50px 0;
    }

    /* Blogs Grid - 1 column on mobile */
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    /* Blog Card */
    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-content h2 {
        font-size: 18px;
        min-height: auto;
        margin-bottom: 12px;
    }

    .blog-card-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .blog-card-meta {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .blog-date,
    .blog-read-time {
        font-size: 12px;
    }

    .blog-read-more {
        font-size: 14px;
    }

    /* Blogs CTA Section */
    .blogs-cta-section {
        padding: 35px 25px;
        margin: 40px 0;
        border-radius: 12px;
    }

    .blogs-cta-section h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .blogs-cta-section p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .blogs-cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }

    .blogs-cta-btn {
        width: 100%;
        padding: 14px 25px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .blogs-hero h1 {
        font-size: 28px;
    }

    .blogs-hero-subtitle {
        font-size: 15px;
    }

    .blog-card-content h2 {
        font-size: 17px;
    }

    .blogs-cta-section h2 {
        font-size: 24px;
    }
}

/* Tablet Responsive - 2 columns */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blogs-hero h1 {
        font-size: 38px;
    }

    .blog-card-content h2 {
        font-size: 19px;
    }
}
