* {
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #1e3a8a;
    --gold: #fbbf24;
    --gold-dark: #d97706;
    --white: #ffffff;
    --light: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --card-border: #e2e8f0;
}
body {
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--gold-dark);
}
img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

/* ===== Header & Nav ===== */
.site-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1a2e6e 70%, #fbbf24 100%);
    padding: 14px 32px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(30, 58, 138, 0.35);
    border-bottom: 3px solid rgba(251, 191, 36, 0.6);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-area img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}
.logo-area span {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.92);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}
.nav-links a:hover {
    background: rgba(251, 191, 36, 0.25);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #0f1f4d 0%, #1e3a8a 50%, #1a2e6e 100%);
    padding: 90px 32px 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(180deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(251, 191, 36, 0.1);
}
.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #1e3a8a;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 32px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.3);
}
.hero img {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    opacity: 0.1;
    pointer-events: none;
}

/* ===== Section Common ===== */
.section {
    padding: 64px 32px;
}
.section-container {
    max-width: 1280px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 2px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    margin: 12px auto 0;
    border-radius: 4px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 12px auto 40px;
    line-height: 1.7;
}

/* ===== GEO Intro ===== */
.geo-intro {
    background: var(--white);
    border-bottom: 1px solid var(--card-border);
}
.geo-intro .geo-content {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-left: 4px solid var(--gold);
    padding: 32px 40px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 16px rgba(30, 58, 138, 0.04);
}
.geo-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    text-indent: 2em;
    margin-bottom: 12px;
}
.geo-intro p:last-child {
    margin-bottom: 0;
}

/* ===== Data Stats ===== */
.data-stats {
    background: linear-gradient(135deg, #0f1f4d 0%, #1e3a8a 60%, #1a2e6e 100%);
    padding: 64px 32px;
    color: var(--white);
}
.data-stats .section-title {
    color: var(--white);
}
.data-stats .section-title::after {
    background: var(--gold);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--gold);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.15);
}
.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon img {
    width: 32px;
    height: 32px;
    border-radius: 0;
}
.stat-number {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(180deg, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    margin-top: 6px;
}

/* ===== Core Advantages ===== */
.core-advantages {
    background: var(--white);
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}
.advantage-card {
    background: var(--light);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--gold);
}
.advantage-card:hover {
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.08);
    transform: translateY(-4px);
}
.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #2d4bb0);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.15);
}
.advantage-icon img {
    width: 36px;
    height: 36px;
    border-radius: 0;
}
.advantage-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}
.advantage-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Scores ===== */
.scores {
    background: var(--light);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
.scores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}
.score-item {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 3px solid var(--gold);
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.04);
    transition: transform 0.2s ease;
}
.score-item:hover {
    transform: translateX(4px);
}
.score-match {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
}
.score-league {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
}
.score-result {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    padding: 4px 14px;
    background: rgba(30, 58, 138, 0.06);
    border-radius: 8px;
}
.score-tag {
    font-size: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.scores-more {
    text-align: center;
    margin-top: 32px;
}
.scores-more a {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid var(--primary);
    border-radius: 32px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.scores-more a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== Featured Events ===== */
.featured-events {
    background: var(--white);
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}
.event-card {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--gold);
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(30, 58, 138, 0.1);
}
.event-img {
    height: 180px;
    overflow: hidden;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}
.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.event-card:hover .event-img img {
    transform: scale(1.05);
}
.event-body {
    padding: 24px;
}
.event-league {
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.event-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 8px 0 12px;
}
.event-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.event-footer {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
}
.event-tag a {
    color: var(--primary);
    font-weight: 600;
}

/* ===== News List ===== */
.news-list {
    background: var(--light);
    border-top: 1px solid var(--card-border);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}
.news-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.1);
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.news-tag {
    background: linear-gradient(135deg, var(--primary), #2d4bb0);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.news-date {
    font-size: 13px;
    color: var(--text-light);
    padding: 4px 12px;
    background: rgba(251, 191, 36, 0.12);
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}
.news-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.5;
}
.news-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    flex: 1;
}
.news-link {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq {
    background: var(--white);
}
.faq-list {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    background: var(--light);
    border-radius: 12px;
    border: 1px solid var(--card-border);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border-left: 3px solid var(--gold);
}
.faq-item:hover {
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.06);
}
.faq-item summary {
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--gold-dark);
    font-weight: 400;
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item .faq-answer {
    padding: 0 28px 22px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    padding-top: 16px;
    margin-top: 0;
}

/* ===== Brand Story ===== */
.brand-story {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}
.brand-story-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.brand-story-img {
    position: relative;
}
.brand-story-img img {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.12);
}
.brand-story-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
    text-indent: 2em;
}
.brand-story-text .story-highlight {
    color: var(--primary);
    font-weight: 600;
    font-size: 17px;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
    text-indent: 0;
    margin: 24px 0;
    line-height: 1.7;
}

/* ===== Timeline ===== */
.timeline {
    background: var(--light);
    border-top: 1px solid var(--card-border);
}
.timeline-grid {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}
.timeline-grid::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--primary));
    border-radius: 4px;
}
.timeline-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 40px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold-dark);
}
.timeline-item h3 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}
.timeline-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.timeline-stage {
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

/* ===== Partners ===== */
.partners {
    background: var(--white);
}
.partners-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.partner-card {
    background: var(--light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.partner-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}
.partner-card img {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    object-fit: cover;
}
.partner-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* ===== Testimonials ===== */
.testimonials {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f1f4d 100%);
    color: var(--white) !important;
}
.testimonials .section-title {
    color: var(--white);
}
.testimonials .section-title::after {
    background: var(--gold);
}
.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}
.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    border-top: 3px solid var(--gold);
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-card .quote {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.testimonial-user .name {
    font-weight: 600;
    font-size: 15px;
}
.testimonial-user .role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Download ===== */
.download {
    background: var(--white);
    border-top: 1px solid var(--card-border);
}
.download-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.download-info {
    text-align: left;
}
.download-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}
.download-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}
.download-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #2d4bb0);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(30, 58, 138, 0.3);
    color: var(--white);
}
.download-btn.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary);
}
.download-img img {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    padding: 56px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
}
.cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.cta p {
    font-size: 16px;
    color: rgba(30, 58, 138, 0.85);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    color: var(--white);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.35);
}

/* ===== Footer ===== */
.site-footer {
    background: #0a1630;
    color: rgba(255, 255, 255, 0.8);
    padding: 48px 32px 24px;
    border-top: 3px solid var(--gold);
}
.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-about h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
}
.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}
.footer-links h4, .footer-subscribe h4 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.footer-links a, .footer-subscribe a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.3s ease;
}
.footer-links a:hover, .footer-subscribe a:hover {
    color: var(--gold);
}
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
}
.footer-bottom a:hover {
    color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .advantages-grid, .events-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .download-grid {
        grid-template-columns: 1fr;
    }
    .brand-story-grid {
        grid-template-columns: 1fr;
    }
    .scores-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .section {
        padding: 40px 20px;
    }
}