@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: #0f0f23;
    padding: 8px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left span {
    margin-right: 20px;
    color: #aaa;
}

.header-top-right a {
    color: #ff6b6b;
    font-weight: bold;
    margin-left: 15px;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.logo-text p {
    font-size: 12px;
    color: #aaa;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #fff;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #ff6b6b;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,107,0.4);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 180px 0 100px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,107,107,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.banner .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-content {
    flex: 1;
    max-width: 600px;
}

.banner-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content h2 span {
    color: #ff6b6b;
}

.banner-content p {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.8;
}

.banner-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,107,0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #ff6b6b;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ff6b6b;
    color: #fff;
}

.banner-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 36px;
    font-weight: bold;
    color: #ff6b6b;
    display: block;
}

.stat-item .label {
    font-size: 14px;
    color: #aaa;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.about-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #ff6b6b;
    border-radius: 15px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.about-feature span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.news {
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 13px;
    color: #ff6b6b;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.news-more {
    text-align: center;
    margin-top: 50px;
}

.why-choose {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.why-choose .section-title h2 {
    color: #fff;
}

.why-choose .section-title p {
    color: #aaa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.why-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.why-item .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.why-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    background: #fff;
    color: #ff6b6b;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.footer {
    background: #0f0f23;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom a {
    color: #ff6b6b;
}

.breadcrumb {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 40px;
    color: #fff;
}

.breadcrumb-content {
    text-align: center;
}

.breadcrumb-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #aaa;
}

.breadcrumb-nav a {
    color: #fff;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #ff6b6b;
}

.breadcrumb-nav span {
    margin: 0 10px;
    color: #666;
}

.page-content {
    padding: 60px 0;
    background: #fff;
    min-height: 600px;
}

.about-page .about-section {
    margin-bottom: 60px;
}

.about-page h3 {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #ff6b6b;
}

.about-page p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.team-member .avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.team-member h4 {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,107,0.4);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.news-item-image {
    width: 300px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.news-item-content {
    padding: 30px;
    flex: 1;
}

.news-item-content .date {
    font-size: 13px;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.news-item-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.news-item-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #ff6b6b;
    font-weight: 500;
    font-size: 14px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f0f0f0;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background: #ff6b6b;
    color: #fff;
}

.news-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.news-detail-header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.news-detail-body p {
    margin-bottom: 20px;
}

.news-detail-body h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a2e;
    margin: 40px 0 20px;
}

.news-detail-body ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.news-detail-body ul li {
    margin-bottom: 10px;
    list-style: disc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    color: #fff;
    text-align: center;
}

.product-header h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-header .price {
    font-size: 36px;
    font-weight: bold;
    color: #ff6b6b;
}

.product-header .price span {
    font-size: 14px;
    color: #aaa;
}

.product-body {
    padding: 30px;
}

.product-body ul {
    margin-bottom: 30px;
}

.product-body ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-body ul li::before {
    content: '✓';
    color: #ff6b6b;
    font-weight: bold;
}

.product-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,107,0.4);
}

.process-section {
    margin-top: 80px;
}

.process-section h3 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-item .number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.process-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.process-item p {
    font-size: 14px;
    color: #666;
}

.floating-btns {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    line-height: 1.2;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.floating-btn.wechat {
    background: linear-gradient(135deg, #07c160 0%, #05a050 100%);
}

.floating-btn.detail {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-bar .container {
    display: flex;
    gap: 15px;
}

.mobile-bar a {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.mobile-bar .wechat-btn {
    background: linear-gradient(135deg, #07c160 0%, #05a050 100%);
}

.mobile-bar .detail-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

@media (max-width: 992px) {
    .banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-content h2 {
        font-size: 32px;
    }
    
    .banner-stats {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image::before {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-item-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .header-btn {
        display: none;
    }
    
    .banner {
        padding: 140px 0 60px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-btns {
        justify-content: center;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .floating-btns {
        display: none;
    }
    
    .mobile-bar {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .footer {
        padding-bottom: 90px;
    }
}
