/* Reset & Base Styles */
:root {
    --primary-color: #2c3e50; /* Deep Blue - Professional */
    --secondary-color: #27ae60; /* Traffic Green - Safe */
    --accent-color: #f39c12; /* Vitality Orange - Action */
    --bg-color: #F5F7FA; /* Light Grey - Background */
    --text-color: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.small-container {
    max-width: 800px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.btn-action {
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    padding: 12px 30px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.btn-action:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

.lead-success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lead-success-popup-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.lead-success-popup {
    background: var(--white);
    border-radius: 14px;
    padding: 26px 24px 24px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.lead-success-popup-overlay.is-visible .lead-success-popup {
    transform: translateY(0);
}

.lead-success-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 18px;
}

.lead-success-popup-close i {
    pointer-events: none;
}

.lead-success-popup-close:hover {
    color: var(--primary-color);
}

.lead-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 32px;
    margin: 0 auto 12px;
}

.lead-success-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.lead-success-message {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.7;
}

.lead-success-close-btn {
    margin-top: 18px;
    min-width: 160px;
}

@media (max-width: 480px) {
    .lead-success-popup {
        padding: 22px 18px 20px;
        border-radius: 10px;
    }

    .lead-success-title {
        font-size: 1.3rem;
    }
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* 1. Header */
#main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-color);
    padding-bottom: 5px;
    position: relative;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hotline {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotline i {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Header Right Group */
.header-right-group {
    display: flex;
    align-items: center;
}

/* Fixed Right QR Codes */
.fixed-qr-codes {
    position: fixed;
    top: 66%; /* Lower to approx 2/3 of page height */
    transform: translateY(-50%);
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Increase gap */
    padding: 15px; /* Increase padding */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(5px);
}

.fixed-qr-codes .qr-item {
    position: relative;
    display: flex;
    flex-direction: column; /* Stack image and title vertically */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 5px; /* Gap between image and title */
}

.fixed-qr-codes .qr-small {
    height: 50px; /* Increase size */
    width: 50px; /* Increase size */
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.fixed-qr-codes .qr-title {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.fixed-qr-codes .qr-item:hover .qr-small {
    transform: scale(1.1);
}

.fixed-qr-codes .qr-popup {
    position: absolute;
    top: 50%; /* Center relative to item */
    transform: translateY(-50%);
    right: 70px; /* Adjust for larger item size */
    width: 200px; /* Increased popup size */
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid #eee;
}

.fixed-qr-codes .qr-item:hover .qr-popup {
    display: flex;
    opacity: 1;
}

.fixed-qr-codes .qr-popup img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0; /* Remove bottom margin */
}

/* Triangle for popup (pointing right) */
.fixed-qr-codes .qr-popup::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: -6px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-left: none;
}

/* Header QR Codes (Removed) */
/* .header-qr styles removed */


/* 2. Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    margin-top: 80px; /* Offset fixed header */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
}

.banner-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-control:hover {
    background: rgba(0, 0, 0, 0.6);
}

.banner-control.prev {
    left: 20px;
}

.banner-control.next {
    right: 20px;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* 恢复垂直居中 */
    width: 100%;
    max-width: var(--max-width); 
    padding-bottom: 0; /* 移除底部内边距 */
}

.hero-text {
    color: var(--white);
    max-width: 600px;
    transform: translateX(-50px);
    margin-bottom: 0; /* 移除底部微调 */
}
.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

.hero-text .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-align: center; /* 居中显示 */
}

.hero-text .subtitle .dot {
    font-size: 0.8em;
    margin: 0 8px;
    color: var(--accent-color);
    vertical-align: middle;
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center; /* 居中显示 */
}

.hero-features span {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero-features i {
    color: var(--secondary-color);
}

.hero-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    width: 380px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-form h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.hero-form > p {
    text-align: center;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.form-group input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
}

/* 3. Core Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--secondary-color);
}

.service-card.active {
    border-top-color: var(--accent-color);
    transform: translateY(-5px);
}

.service-card .tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-card .highlight {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card .desc {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* 4. Pricing */
.pricing-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.pricing-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-table {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
}

.pricing-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.pricing-item.popular {
    background: #fffcf5;
    border-color: var(--accent-color);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.15);
}

.pricing-item .badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.pricing-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.pricing-info .features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pricing-info .features li {
    font-size: 0.9rem;
    color: var(--light-text);
}

.pricing-info .features li i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.pricing-cost {
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    white-space: nowrap;
}

.pricing-cost .currency {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: bold;
}

.pricing-cost .amount {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 800;
}

/* 5. Brand Features */
.feature-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

/* Honors Grid */
.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.honor-item {
    background: #fff;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.honor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.honor-item img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* or contain, depending on image aspect ratio preference */
    border-radius: 4px;
    display: block;
}

.feature-block.reverse {
    flex-direction: row-reverse;
    margin-bottom: 0;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-text p {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--secondary-color);
    background: #e8f5e9;
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.feature-img {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* 6. Testimonials */
.testimonial-slider {
    overflow-x: auto;
    padding-bottom: 30px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0 10px;
}

.testimonial-card {
    background: var(--white);
    width: 350px;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.user-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: #eee;
}

.comment {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    flex: 1;
}

.user-info h4 {
    color: var(--primary-color);
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--light-text);
}

.coach-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.coach-slider-window {
    overflow: hidden;
    flex: 1;
}

.coach-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.coach-slide {
    flex: 0 0 calc(25% - 15px);
}

.coach-slider-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.coach-slider-control:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 992px) {
    .coach-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .coach-slide {
        flex: 0 0 100%;
    }
}

/* 7. FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question i {
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px; /* Approximate max height */
}

.faq-answer p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* 8. Footer */
#footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo i {
    color: var(--secondary-color);
}

.footer-left p {
    margin-bottom: 10px;
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-left p i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-color);
}

.footer-center h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.licenses li {
    margin-bottom: 10px;
}

.licenses a {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.licenses a:hover {
    color: var(--white);
    text-decoration: underline;
}

.copyright {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.qr-box {
    text-align: center;
}

.qr-box img {
    width: 85px;
    height: 85px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.qr-box span {
    font-size: 0.85rem;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .pricing-container {
        flex-direction: column;
    }
    
    .pricing-image {
        display: none;
    }
    
    .feature-block {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-block.reverse {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    #main-header {
        height: 60px;
    }
    
    .header-right-group, .main-nav, .fixed-qr-codes {
        display: none; /* Simplify for mobile, add toggle later */
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Mobile Menu Active State (handled by JS) */
    .main-nav.active {
        display: block;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .main-nav.active ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-section {
        height: auto;
        padding: 40px 0;
        margin-top: 60px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pricing-item {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .pricing-info .features {
        justify-content: center;
    }
    
    .pricing-cost {
        margin: 10px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-left p i {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-right {
        justify-content: center;
    }
}
