/*
 * 123B App Theme Styles
 * Theme: 123b-app-theme
 */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header Styles */
.main-header-wrapper {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.topbar-actions {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
    margin-bottom: 10px;
}

.mobile-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.bar-item {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.primary-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.desktop-navigation .nav-list-items {
    display: flex;
    gap: 30px;
}

.desktop-navigation .nav-list-items a {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.desktop-navigation .nav-list-items a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.user-access-panel {
    display: flex;
    gap: 15px;
}

.access-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-access {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.login-access:hover {
    background-color: #fff;
    color: #1a1a2e;
}

.register-access {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    border: 2px solid transparent;
}

.register-access:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* Mobile Navigation */
.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-nav-panel.active {
    right: 0;
}

.mobile-navigation .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-navigation .mobile-nav-list a {
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-user-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-action-btn {
    padding: 15px;
    text-align: center;
    border-radius: 25px;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
}

.mobile-action-btn.highlight {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    border-color: transparent;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    margin-top: 50px;
    text-align: center;
}

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

.page-hero-image {
    margin-top: 40px;
    text-align: center;
}

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

.section-image {
    margin: 40px auto;
    text-align: center;
    max-width: 800px;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    margin-bottom: 20px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-image {
    margin: 30px auto;
    text-align: center;
}

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

.btn-primary, .btn-secondary, .btn-cta {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
}

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

.btn-secondary:hover {
    background-color: #fff;
    color: #1a1a2e;
}

.btn-cta {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
}

/* Page Hero */
.page-hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

/* Brand Info Section */
.brand-info-section {
    background-color: #fff;
}

.brand-info-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.brand-info-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.brand-info-table td:first-child {
    font-weight: 600;
    color: #1a1a2e;
    background-color: #f8f9fa;
    width: 40%;
}

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

/* Features Section */
.features-section {
    background-color: #f8f9fa;
}

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

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

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

/* Products Section */
.products-section {
    background-color: #fff;
}

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

.product-item {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 10px;
    border-left: 4px solid #e94560;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.product-desc {
    color: #666;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.stats-section .section-title {
    color: #fff;
}

.stats-section .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 30px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 10px;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

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

.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

/* Steps Section */
.steps-section {
    background-color: #fff;
}

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

.step-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.step-desc {
    color: #666;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8f9fa;
}

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

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.benefit-desc {
    color: #666;
}

/* Requirements Section */
.requirements-section {
    background-color: #fff;
}

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

.requirement-item {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 10px;
    border-left: 4px solid #0f3460;
}

.requirement-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.requirement-desc {
    color: #666;
}

/* Tips Section */
.tips-section {
    background-color: #f8f9fa;
}

.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.tip-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tip-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.tip-desc {
    color: #666;
}

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

.tip-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Promotions Section */
.promotions-section {
    background-color: #fff;
}

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

.promotion-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #eee;
    position: relative;
    transition: all 0.3s ease;
}

.promotion-card:hover {
    border-color: #e94560;
    transform: translateY(-5px);
}

.promotion-card.featured {
    border-color: #e94560;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.promotion-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.promotion-desc {
    color: #666;
    margin-bottom: 15px;
}

.promotion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* VIP Section */
.vip-section {
    background-color: #f8f9fa;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.vip-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.vip-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.vip-desc {
    color: #666;
}

/* Terms Section */
.terms-section {
    background-color: #fff;
}

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

.term-item {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 10px;
    border-left: 4px solid #e94560;
}

.term-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.term-desc {
    color: #666;
}

/* Comparison Section */
.comparison-section {
    background-color: #f8f9fa;
}

.comparison-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

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

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
}

.comparison-table th {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    font-weight: 600;
}

.comparison-table td {
    border-bottom: 1px solid #eee;
}

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

.comparison-table td:first-child {
    font-weight: 600;
    color: #1a1a2e;
}

/* Login Methods Section */
.login-methods-section {
    background-color: #fff;
}

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

.method-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: #0f3460;
}

.method-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.method-desc {
    color: #666;
}

/* Security Section */
.security-section {
    background-color: #f8f9fa;
}

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

.security-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.security-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.security-desc {
    color: #666;
}

/* Troubleshooting Section */
.troubleshooting-section {
    background-color: #fff;
}

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

.troubleshoot-item {
    padding: 25px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: 10px;
    border-left: 4px solid #e94560;
}

.troubleshoot-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.troubleshoot-desc {
    color: #666;
}

/* Guide Steps */
.getting-started-section {
    background-color: #fff;
}

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

.guide-step {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

/* Features Guide Section */
.features-guide-section {
    background-color: #f8f9fa;
}

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

.feature-guide {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Transactions Section */
.transactions-section {
    background-color: #fff;
}

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

.transaction-type {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #eee;
}

.transaction-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

/* Contact Section */
.contact-methods-section {
    background-color: #fff;
}

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

.contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #e94560;
    transform: translateY(-5px);
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-desc {
    color: #666;
}

/* Support Types Section */
.support-types-section {
    background-color: #f8f9fa;
}

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

.support-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.support-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.support-desc {
    color: #666;
}

/* Working Hours Section */
.working-hours-section {
    background-color: #fff;
}

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

.hours-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.hours-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hours-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 10px;
}

.hours-desc {
    opacity: 0.9;
}

/* Response Time Section */
.response-time-section {
    background-color: #f8f9fa;
}

.response-table-wrapper {
    max-width: 700px;
    margin: 0 auto;
    overflow-x: auto;
}

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

.response-table th,
.response-table td {
    padding: 20px;
    text-align: center;
}

.response-table th {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    font-weight: 600;
}

.response-table td {
    border-bottom: 1px solid #eee;
}

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

/* Footer Styles */
.main-footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-top-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-title,
.footer-nav-title,
.footer-contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e94560;
}

.footer-brand-desc,
.footer-contact-desc {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu-list a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-menu-list a:hover {
    opacity: 1;
    color: #e94560;
}

.footer-bottom-content {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-copyright {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-seo-text {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-trigger {
        display: flex;
    }
    
    .desktop-navigation {
        display: none;
    }
    
    .user-access-panel {
        display: none;
    }
    
    .mobile-nav-panel {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .page-hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .brand-info-table {
        font-size: 0.9rem;
    }
    
    .brand-info-table td {
        padding: 15px;
    }
    
    .comparison-table,
    .response-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td,
    .response-table th,
    .response-table td {
        padding: 15px;
    }
    
    .footer-top-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .page-hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
