/* Layout */
body {
    font: 14px sans-serif;
    min-height: 100vh;
	margin: 0;
    display: flex;
    flex-direction: column;
	overflow-x: hidden; /* Prevent horizontal scroll */
}
		
/* Universal container for centering */
.container {
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }

/* Header */
.header {
            width: 100%;
            background: linear-gradient(90deg,#005c97 60%,#ffd600 100%);
            color: #fff;
            border-radius: 0 0 18px 18px;
            box-shadow: 0 2px 12px rgba(23,162,184,0.10);
            padding: 0;
        }
        .header-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 32px;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .nav {
            display: flex;
            gap: 24px;
        }
        .nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.08rem;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .nav a:hover {
            background: #ffd600;
            color: #005c97;
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
        }
        .cta-btn {
            background: #ffd600;
            color: #005c97;
            border-radius: 8px;
            padding: 8px 18px;
            font-weight: 700;
            text-decoration: none;
            font-size: 1rem;
            margin-left: 10px;
            transition: background 0.2s, color 0.2s;
        }
        .cta-btn:hover {
            background: #005c97;
            color: #ffd600;
        }
        /* Language dropdown styles removed - handled in header.php */
        
        @media (max-width: 900px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 8px;
            }
            .nav {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                margin-top: 10px;
            }
            .menu-btn {
                display: block;
            }
            .nav {
                display: none;
            }
            .nav.active {
                display: flex;
            }
        }

/* Professional Form Card */
.wrapper {
    max-width: 420px;
    width: 100%;
    margin: 64px auto 0 auto;
    background: linear-gradient(90deg, #005c97 60%, #363795 100%);
    padding: 40px 32px 32px 32px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    transition: box-shadow 0.2s;
}
.wrapper:hover {
    box-shadow: 0 12px 40px rgba(23,162,184,0.18);
}
.wrapper h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.wrapper form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.wrapper label {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.styled-input,
.wrapper input[type="text"],
.wrapper input[type="password"],
.wrapper input[type="number"] {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1.5px solid #17a2b8;
    background: #005c97;
    color: #fff;
    font-size: 1.08rem;
    margin-bottom: 2px;
    outline: none;
    transition: border 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 6px rgba(23,162,184,0.10);
}
.styled-input:focus,
.wrapper input[type="text"]:focus,
.wrapper input[type="password"]:focus,
.wrapper input[type="number"]:focus {
    border-color: #ffd600;
    background: #005c97;
    box-shadow: 0 2px 12px rgba(255,214,0,0.10);
}
.wrapper .cta {
    margin-top: 8px;
    padding: 12px 0;
    border-radius: 8px;
    background: linear-gradient(90deg, #ffd600 60%, #17a2b8 100%);
    color: #005c97;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 1.08rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(23,162,184,0.10);
}
.wrapper .cta:hover {
    background: #17a2b8;
    color: #ffd600;
}
.error {
    color: #e53935;
    background: #fff3e0;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    text-align: center;
    border: 1px solid #ffd600;
}
.wrapper .form-links {
    text-align: center;
    margin-top: 12px;
    font-size: 0.98rem;
    display: flex;
    flex-direction: row; /* Horizontal layout */
    justify-content: center;
    gap: 24px; /* Horizontal gap between links */
}
.wrapper .form-links a {
    color: #ffd600;
    text-decoration: underline;
    transition: color 0.2s;
}
.wrapper .form-links a:hover {
    color: #17a2b8;
}

/* Hero */
/* Responsive and professional hero grid layout */
.hero-section {
    background: url('images/shubank-hero-banner.png') center/cover no-repeat;
    padding: 48px 0 32px 0;
}
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #2563eb; background: #dbeafe; border: 1px solid #bfdbfe; padding: 6px 10px; border-radius: 999px; font-size: 0.9rem; font-weight: 600; }

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    justify-content: flex-start;
    align-items: stretch;
}

.bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    background: #0047AB;
    border: 1px solid #e2e8f0;
    padding: 10px 12px;
    border-radius: 12px;
    min-width: 180px;
    font-size: 1rem;
    flex: 1 1 160px;
    box-sizing: border-box;
    word-break: break-word;
}
.hero-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.hero-card p { margin: 0; color: #475569; }
/* Trust Bar */
.trustbar { background: #0f172a; color: #e2e8f0; }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; align-items: center; justify-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; opacity: 0.9; }
.trust-item img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.trust-item span { font-size: 0.9rem; color: #94a3b8; }
.why-choose-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
/*hero, journey, chart */
.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    min-height: 420px;
}
.hero-grid > div:first-child {
    flex: 1 1 0;
    min-width: 320px;
    max-width: 700px;
}
.hero-media {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    max-width: 420px;
}
.hero-card {
    width: 100%;
    max-width: 400px;
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-card img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* JOURNEY SECTION */
.journey-section {
    margin: 40px 0;
}
.journey-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.journey-step {
    background: #dbeafe;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(23,162,184,0.10);
    padding: 24px 18px;
    min-width: 180px;
    max-width: 220px;
    flex: 1 1 180px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.journey-step:hover {
    box-shadow: 0 8px 32px rgba(23,162,184,0.18);
    transform: translateY(-4px) scale(1.03);
}

/* CHART SECTION */
.chart-section {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.chart-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;    
    width: 100%;
    margin: 0 auto;
}
.chart-box {
    background: linear-gradient(120deg, #005c97 60%, #363795 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(23,162,184,0.10);
    padding: 18px 0 12px 0;
    width: 100%;
    min-width: 0;
    max-width: 260px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    position: relative;
    flex: 1 1 180px;
}
/* Stylish and fully responsive Chart Section Elements */

/* Chart Hanger */
.chart-hanger {
    height: 4px;
    width: 44px;
    background: linear-gradient(90deg, #ffd600 60%, #ffea00 100%);
    border-radius: 2px;
    margin: 0 auto 12px auto;
    box-shadow: 0 2px 8px rgba(255, 214, 0, 0.12);
    transition: width 0.2s;
}

/* Chart Time */
.chart-time {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffd600;
    letter-spacing: 1px;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    transition: font-size 0.2s;
}

/* Chart Title */
.chart-title {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.10);
    transition: font-size 0.2s;
}

/* Chart Result */
.chart-result {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd600;
    margin-top: 10px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(255, 214, 0, 0.18);
    transition: font-size 0.2s;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1100px) {
    .container {
        width: min(98vw, 1000px);
    }
    .chart-grid {
        max-width: 98vw;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 900px) {
    .container {
        width: 99vw;
        padding-left: 6px;
        padding-right: 6px;
    }
    .hero-section {
        padding: 24px 0 12px 0;
    }
    .hero-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        min-height: unset;
    }
    .hero-grid > div:first-child {
        width: 100%;
        max-width: 100vw;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        align-items: center;
        text-align: center;
    }
    .hero-media {
        width: 100%;
        max-width: 100vw;
        margin-top: 18px;
        min-width: unset;
        justify-content: center;
    }
    .hero-card {
        max-width: 98vw;
        padding: 8px;
        margin: 0 auto;
    }
    .hero-card img {
        max-height: 180px;
    }
    .journey-steps {
        gap: 16px;
    }
    .journey-step {
        min-width: 140px;
        max-width: 98vw;
        padding: 16px 6px;
        font-size: 0.98rem;
    }
    .chart-grid {
         grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .chart-box {
        width: 98vw;
        max-width: 99vw;
    }
}
@media (max-width: 600px) {
    .container {
        width: 100vw;
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-grid > div:first-child,
    .hero-media,
    .hero-card {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-card {
        max-width: 98vw;
    }
    .hero-card img {
        max-width: 96vw;
        max-height: 120px;
    }
    .journey-steps {
        gap: 10px;
    }
    .journey-step {
        min-width: 0;
        max-width: 99vw;
        padding: 10px 2vw;
    }
    .chart-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .chart-box {
        width: 96vw;
        max-width: 99vw;
        padding: 10px 0 8px 0;
    }
}
/* Responsive adjustments */
@media (max-width: 900px) {
    .chart-hanger {
        width: 36px;
        margin-bottom: 10px;
    }
    .chart-time {
        font-size: 1rem;
    }
    .chart-title {
        font-size: 1rem;
    }
    .chart-result {
        font-size: 1.6rem;
        min-height: 2rem;
    }
}
@media (max-width: 600px) {
    .chart-hanger {
        width: 28px;
        margin-bottom: 8px;
    }
    .chart-time {
        font-size: 0.98rem;
    }
    .chart-title {
        font-size: 0.98rem;
    }
    .chart-result {
        font-size: 1.2rem;
        min-height: 1.5rem;
    }
}
/* WHY CHOOSE US SECTION */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #17a2b8, transparent);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 2.5rem;
    color: #005c97;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.why-choose-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(23,162,184,0.03) 100%);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(23,162,184,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17a2b8 0%, #ffd600 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(23,162,184,0.15);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(23,162,184,0.05) 100%);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #17a2b8 0%, #ffd600 100%);
    border-radius: 50%;
    margin: 0 auto 24px auto;
    box-shadow: 0 4px 16px rgba(23,162,184,0.2);
    transition: transform 0.3s ease;
}

.why-choose-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-item h3 {
    font-size: 1.4rem;
    color: #005c97;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.why-choose-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-header h2 {
        font-size: 2rem;
    }
    
    .why-choose-header p {
        font-size: 1.1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-choose-item {
        padding: 24px 20px;
    }
    
    .why-icon {
        font-size: 2.5rem;
        height: 70px;
        width: 70px;
    }
}

@media (max-width: 480px) {
    .why-choose-header {
        margin-bottom: 40px;
    }
    
    .why-choose-header h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-item h3 {
        font-size: 1.2rem;
    }
    
    .why-choose-item p {
        font-size: 0.95rem;
    }
}

.features-section {
    padding: 24px 0;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1440px; /* Same as chart-section */
    margin: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #005c97;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
.rates-notice-section {
    margin-bottom: 32px;
}
.notice-board, .matka-rates {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(23,162,184,0.10);
    border-bottom: 6px solid #ffd600;
    padding: 32px 28px;
    min-width: 320px;
    max-width: 480px;
    flex: 1 1 320px;
}
.notice-board h2, .matka-rates h2 {
    color: #005c97;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.notice-board hr, .matka-rates hr {
    border: none;
    border-top: 1px solid #e0e7ef;
    margin-bottom: 18px;
}
.matka-rates table tr td {
    font-size: 1.08rem;
    padding: 12px 0;
}
@media (max-width: 900px) {
    .rates-notice-section {
        flex-direction: column;
        gap: 18px;
    }
    .notice-board, .matka-rates {
        max-width: 98vw;
        padding: 18px 8px;
    }
}
.timing-table-container {
    margin: 24px 0;
    border-radius: 16px;
    background: linear-gradient(120deg,#e3f6fd 80%,#fff 100%);
    padding: 12px;
}
.timing-table th, .timing-table td {
    text-align: center;
    padding: 12px 6px;
    border-bottom: 1px solid #e0e7ef;
}
.timing-table tr:last-child td {
    border-bottom: none;
}
.timing-table tbody tr:nth-child(even) {
    background: #f6fbff;
}
.timing-table tbody tr:hover {
    background: #e3f6fd;
    transition: background 0.2s;
}
@media (max-width: 600px) {
    .timing-table th, .timing-table td {
        padding: 10px 2px;
        font-size: 0.98rem;
    }
    .timing-table-container {
        padding: 4px;
    }
}
.result-table-section {
    box-shadow: 0 4px 24px rgba(23,162,184,0.10);
    border-radius: 12px;
    background: #fff;
}
.result-table th, .result-table td {
    text-align: center;
    font-size: 1.08rem;
    border-bottom: 1px solid #e0e7ef;
}
.result-table tr:last-child td {
    border-bottom: none;
}
.result-table tbody tr:nth-child(even) {
    background: #f6fbff;
}
.result-table tbody tr:hover {
    background: #e3f6fd;
    transition: background 0.2s;
}
@media (max-width: 700px) {
    .result-table-section {
        max-width: 99vw;
        margin: 12px 2vw;
        padding: 0;
    }
    .result-table th, .result-table td {
        padding: 8px 2px;
        font-size: 0.98rem;
    }
}
/* winner-carousel */
.winners-carousel {
    background: linear-gradient(135deg, #17a2b8 0%, #005c97 50%, #ffd600 100%);
    padding: 20px 0;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}

.winners-ticker {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}

.winner-item {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    margin-right: 24px;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    gap: 12px;
    font-weight: 600;
    color: #005c97;
}

.winner-icon {
    background: linear-gradient(45deg, #ffd600, #17a2b8);
    color: #005c97;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.winner-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.winner-name {
    font-size: 1rem;
    font-weight: 700;
    color: #005c97;
}

.winner-info {
    font-size: 0.85rem;
    color: #17a2b8;
    font-weight: 500;
}

.winner-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e53935;
    margin-left: auto;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.winners-carousel:hover .winners-ticker {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .winner-item {
        min-width: 250px;
        padding: 10px 16px;
    }
    .winner-name { font-size: 0.9rem; }
    .winner-info { font-size: 0.8rem; }
    .winner-amount { font-size: 1rem; }
}
footer {
    width: 100%;
    margin: 0 auto;
    padding: 10px 16px;
    background: #005c97;
    color: #fff;
    font-size: 0.98rem;
    text-align: center;
    box-sizing: border-box;
    border-radius: 0 0 16px 16px;
}
.disclaimer {
      width: 100%;
    margin: 0 auto 0 auto;
    padding: 12px 16px;
    background: #f3f4f6;
    color: #111827;
    font-size: 0.98rem;
    box-sizing: border-box;
    text-align: center;
    border-radius: 0 0 16px 16px;
}
.disclaimer a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.2s;
}
@media (max-width: 600px) {
    .disclaimer, footer {
        padding-left: 4vw;
        padding-right: 4vw;
        font-size: 0.95rem;
        border-radius: 0;
    }
}

/* About Page Styles */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li::after {
    content: ">";
    margin: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #0056b3;
}

.breadcrumb li[aria-current="page"] {
    color: #6c757d;
    font-weight: 500;
}

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-text .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-quick {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-quick .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
}

.stat-quick .stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-card {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.about-image-card img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image-card:hover img {
    transform: scale(1.05);
}

/* Story Section */
.about-story-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.story-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    border: 1px solid #e9ecef;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    line-height: 1.6;
    color: #6c757d;
}

/* Why Choose Section */
.about-why-section {
    padding: 5rem 0;
    background: white;
}

.about-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .why-features-grid {
        max-width: 1200px;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
}

.why-feature {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.why-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.why-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.why-feature p {
    line-height: 1.6;
    color: #6c757d;
}

/* Offers Section */
.about-offers-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.offer-card .offer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.offer-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.offer-card p {
    line-height: 1.6;
    color: #6c757d;
}

/* Community Section */
.about-community-section {
    padding: 5rem 0;
    background: white;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.community-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 2rem;
}

.community-benefits {
    margin-bottom: 3rem;
}

.benefit-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    border-left: 4px solid #667eea;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.community-image-card {
    position: relative;
}

.community-image-card img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Vision Section */
.about-vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.mission-card .vision-icon, .vision-card .vision-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-card h2, .vision-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Values Section */
.about-values-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-card .value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.6;
    color: #6c757d;
}

/* Join Section */
.about-join-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    text-align: center;
}

.join-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.join-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    padding: 0 1rem;
}

.join-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.cta-btn-large {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 1rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(238, 90, 82, 0.3);
    border: none;
    cursor: pointer;
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(238, 90, 82, 0.4);
    color: white;
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.join-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
    padding: 0 1rem;
}

.join-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-stats-quick {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 1rem;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .cta-btn-large, .cta-btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }

    .join-features {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 2rem 0;
    }
    
    .about-story-section, 
    .about-why-section, 
    .about-offers-section, 
    .about-community-section, 
    .about-vision-section, 
    .about-values-section, 
    .about-join-section {
        padding: 3rem 0;
    }
    
    .join-content {
        padding: 0 1rem;
    }
    
    .join-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .join-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
        text-align: center;
        line-height: 1.6;
    }
    
    .join-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .cta-btn-large, .cta-btn-secondary {
        width: 100%;
        max-width: 260px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin: 0;
        text-align: center;
        box-sizing: border-box;
    }
    
    .join-features {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .join-features span {
        font-size: 0.9rem;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .offer-card, .value-card {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
/* Results Page Additional Styles */

/* Hero Quick Results */
.hero-quick-results {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-quick-results h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.quick-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-result-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.quick-result-item .market-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #ffd700;
}

.quick-result-item .result-time {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.quick-result-item .result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Market Timing Section */
.market-timing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.market-timing-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.timing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.timing-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.timing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timing-card h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f3f4;
}

.timing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    border-left: 4px solid #667eea;
}

.timing-item .market {
    font-weight: 600;
    color: #2c3e50;
}

.timing-item .time {
    font-weight: 700;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* Results Analysis Section */
.results-analysis-section {
    padding: 4rem 0;
    background: white;
}

.results-analysis-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.analysis-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.analysis-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.analysis-card p {
    line-height: 1.6;
    color: #6c757d;
}

/* Features Section Updates */
.results-features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.results-features-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item .feature-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* FAQ Section */
.results-faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.results-faq-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    line-height: 1.6;
    color: #6c757d;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .hero-quick-results {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .quick-results-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .timing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timing-card {
        padding: 1.5rem;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .analysis-card {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .market-timing-section,
    .results-analysis-section,
    .results-features-section,
    .results-faq-section {
        padding: 3rem 0;
    }
    
    .hero-quick-results {
        padding: 1rem;
    }
    
    .hero-quick-results h3 {
        font-size: 1.1rem;
    }
    
    .quick-result-item {
        padding: 0.75rem;
    }
    
    .quick-result-item .result-number {
        font-size: 1.3rem;
    }
    
    .timing-card,
    .analysis-card,
    .feature-item,
    .faq-item {
        padding: 1rem;
    }
    
    .timing-item {
        padding: 0.5rem 0.75rem;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Extra small mobile devices (320px and below) */
@media screen and (max-width: 320px) {
    .join-content {
        padding: 0 0.5rem;
    }
    
    .join-content h2 {
        font-size: 1.5rem;
        padding: 0 0.25rem;
    }
    
    .join-content p {
        font-size: 0.9rem;
        padding: 0 0.25rem;
    }
    
    .cta-btn-large, .cta-btn-secondary {
        max-width: 240px;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .join-features {
        padding: 0 0.5rem;
    }
}
}