/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a365d;
    --accent-orange: #ed8936;
    --whatsapp-green: #25D366;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", "PingFang HK", "Microsoft JhengHei", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    display: inline-block;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-brand a {
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    font-size: 1.125rem;
}

.btn-primary:hover {
    background-color: #2d4a7c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.25rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-disabled {
    background: #a0aec0 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2d4a7c 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.launch-banner {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    padding: 16px 24px;
    text-align: center;
    font-size: 1.05rem;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
}

.launch-banner a.launch-cta {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 8px;
}

.launch-banner a.launch-cta:hover {
    opacity: 0.9;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
    color: white;
}

.hero-mission {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e6f0ff;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.what-is {
    background-color: var(--bg-light);
    text-align: center;
}

.trust-statement {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.trust-statement a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-style: italic;
    margin-top: 2rem;
}

/* Use Cases */
.use-cases {
    background-color: var(--bg-white);
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.use-case {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.user-message {
    background-color: #dcf8c6;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-style: italic;
}

.bot-response {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 16 Use Cases Grid (4×4) */
.use-cases-grid-16 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.use-case-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.use-case-emoji {
    font-size: 32px;
    margin-bottom: 12px;
}

.use-case-card h3 {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 8px;
}

.use-case-card p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    flex-grow: 1;
}

.license-note {
    font-size: 0.75rem;
    color: #718096;
    font-style: italic;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #e2e8f0;
}

.use-cases-banner {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7a 100%);
    color: white;
    padding: 32px 40px;
    border-radius: 12px;
    margin-top: 32px;
    text-align: center;
}

.use-cases-banner p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    color: white;
}

/* Why AgentExe Section */
.why-agentexe {
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f7ff 100%);
    padding: 4rem 0;
}

.why-agentexe h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.why-category {
    margin-bottom: 3rem;
}

.why-category:last-child {
    margin-bottom: 0;
}

.why-category-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 700;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-category {
    width: 100%;
}

.why-item {
    background-color: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
    line-height: 1.6;
    transition: transform 0.2s;
}

.why-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.why-item strong {
    color: var(--primary-blue);
}

/* Pillars */
.pillars {
    background-color: var(--bg-light);
}

.pillars h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.pillar-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s;
}

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

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    margin-bottom: 1rem;
}

/* How It Works */
.how-it-works {
    background-color: var(--bg-white);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Trust Signals */
.trust-signals {
    background-color: var(--bg-light);
}

.trust-signals h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.trust-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.trust-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #dd6b20 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Pricing Page */
.pricing-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2d4a7c 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.pricing-hero h1 {
    color: white;
}

.pricing-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.pricing-tiers {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tiers-grid {
        grid-template-columns: 1fr;
    }
}

.tier-card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s;
}

.tier-card:hover {
    transform: translateY(-10px);
}

.tier-featured {
    border: 3px solid var(--accent-orange);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-header h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.tier-price {
    margin-bottom: 0.5rem;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-badge {
    display: inline-block;
    background-color: #48bb78;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.tier-features li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.tier-features li:last-child {
    border-bottom: none;
}

.feature-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.all-plans-include {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    margin-top: 2rem;
}

.payment-methods {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 8px;
}

/* Comparison Table */
.comparison-table-section {
    padding: 3rem 0;
}

.comparison-toggle {
    display: block;
    margin: 0 auto 2rem;
    background-color: var(--bg-light);
    color: var(--primary-blue);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.comparison-toggle:hover {
    background-color: var(--primary-blue);
    color: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

/* Top-up Packs */
.topup-packs {
    background-color: var(--bg-light);
}

.topup-packs h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.topup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.topup-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.topup-card h3 {
    margin-bottom: 1rem;
}

.topup-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

/* Subscribe Page */
.subscribe-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    min-height: 80vh;
}

.subscribe-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.subscribe-wrapper h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.subscribe-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.phone-input-group {
    display: flex;
    align-items: center;
}

.country-code-select {
    width: 120px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px 0 0 8px;
    background: #f7fafc;
    font-size: 0.95rem;
}

.phone-input-group input[type="tel"] {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.phone-prefix {
    background-color: var(--bg-light);
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-weight: 600;
}

.form-help {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-weight: normal;
    color: var(--text-dark);
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.form-footer {
    text-align: center;
    color: var(--text-light);
}

.processing-message {
    text-align: center;
    padding: 2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Welcome Page */
.welcome-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.welcome-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.welcome-wrapper h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.welcome-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.welcome-card {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin-bottom: 3rem;
}

.welcome-card h2 {
    margin-bottom: 1rem;
}

.next-steps {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.welcome-tips {
    background-color: #fff9e6;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
    margin-bottom: 2rem;
}

.welcome-tips h3 {
    margin-bottom: 1rem;
}

.welcome-tips ul {
    list-style-position: inside;
    color: var(--text-dark);
}

.welcome-tips li {
    margin-bottom: 0.5rem;
}

.welcome-support {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.welcome-support a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.welcome-support a:hover {
    text-decoration: underline;
}

/* Responsive for 16 Use Cases Grid */
@media (max-width: 1024px) {
    .use-cases-grid-16 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .use-cases-grid-16 {
        grid-template-columns: 1fr;
    }
    .use-cases-banner {
        padding: 24px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn {
        min-height: 44px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .subscribe-wrapper {
        padding: 2rem;
    }

    .welcome-wrapper h1 {
        font-size: 2rem;
    }

    .welcome-card {
        padding: 2rem;
    }
}
