/* ============================================
   Smile Money - Unified Design System CSS
   ============================================ */

/* -----------------------------------------------
   1. CSS Variables
   ----------------------------------------------- */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F77F00;
    --dark: #1A1A2E;
    --light: #FFFFFF;
    --gray: #F5F5F5;
    --text-gray: #666;
    --success: #28a745;
}

/* -----------------------------------------------
   2. Reset
   ----------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* -----------------------------------------------
   3. Body
   ----------------------------------------------- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
}

/* -----------------------------------------------
   4. Header & Navigation
   ----------------------------------------------- */
header {
    background: #FFFFFF;
    color: var(--dark);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    gap: 10px;
}

.logo-icon {
    font-size: 2.5rem;
}

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

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

nav a:hover,
nav a.active {
    color: var(--primary-color);
}

.nav-btn {
    background: var(--primary-color);
    color: var(--light) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--accent-color);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* -----------------------------------------------
   5. Banner Slider
   ----------------------------------------------- */
.banner-slider {
    position: relative;
    margin-top: 70px;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--light);
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.4);
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* -----------------------------------------------
   6. CTA Buttons (.btn, .btn-primary, .btn-secondary, .cta-buttons)
   ----------------------------------------------- */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--light);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
    background: var(--light);
    color: var(--secondary-color);
}

/* -----------------------------------------------
   7. Stats Section (Homepage - .stats grid)
   ----------------------------------------------- */
.stats {
    background: var(--gray);
    padding: 60px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* -----------------------------------------------
   8. Why Choose Us Section
   ----------------------------------------------- */
.why-choose-section {
    background: white;
    padding: 80px 5%;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title-left {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.why-choose-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.why-choose-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-choose-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.highlight-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.highlight-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.why-choose-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--secondary-color), #003366);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    width: 100%;
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.image-placeholder h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.image-placeholder h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.image-placeholder h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.image-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.image-feature {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.feature-text {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
}

/* -----------------------------------------------
   9. Services Section (Homepage slider & Services page grid)
   ----------------------------------------------- */

/* Homepage Services Slider */
.services {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-slider-container {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

.services-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.services-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.services-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.services-slider-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.services-slider-btn.prev-service {
    left: -20px;
}

.services-slider-btn.next-service {
    right: -20px;
}

.services-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.service-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.service-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* Service Cards (shared between homepage and services page) */
.service-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-color);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.read-more-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--light);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.read-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Category Filter (Services Page) */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--light);
}

/* Services Page Grid Section */
.services-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* -----------------------------------------------
   10. DigiSeva Section (.our-features-section)
   ----------------------------------------------- */
.our-features-section {
    background: #f8f9fa;
    padding: 80px 5%;
}

.our-features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.digiseva-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.digiseva-feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.digiseva-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-left-color: var(--primary-color);
}

.digiseva-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.digiseva-feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.digiseva-feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* -----------------------------------------------
   11. Features Section
   ----------------------------------------------- */
.features {
    background: var(--gray);
    padding: 80px 5%;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: var(--accent-color);
    font-size: 1.8rem;
}

/* -----------------------------------------------
   12. UIUX Section
   ----------------------------------------------- */
.uiux-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 5%;
    overflow: hidden;
}

.uiux-container {
    max-width: 1400px;
    margin: 0 auto;
}

.uiux-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.uiux-images {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    position: absolute;
}

.main-phone {
    z-index: 3;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--secondary-color), #003366);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
}

.app-header {
    background: linear-gradient(135deg, var(--secondary-color), #003366);
    color: white;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-logo {
    font-weight: bold;
    font-size: 1.1rem;
}

.app-balance {
    font-size: 0.9rem;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.app-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem 1rem;
}

.app-service-item {
    background: var(--gray);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.app-service-item:hover {
    transform: translateY(-5px);
}

.service-icon-small {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.app-stats {
    display: flex;
    gap: 1rem;
    padding: 0 1rem 1rem;
}

.app-stats .stat-item {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.side-phone-1 {
    left: -80px;
    top: 50px;
    transform: rotate(-15deg);
    z-index: 2;
    opacity: 0.7;
}

.side-phone-2 {
    right: -80px;
    top: 50px;
    transform: rotate(15deg);
    z-index: 1;
    opacity: 0.5;
}

.phone-frame-small {
    width: 180px;
    height: 360px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.phone-screen-small {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.mini-app {
    padding: 2rem 1rem;
    text-align: center;
}

.mini-header {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.mini-chart {
    font-size: 4rem;
}

.mini-icon {
    font-size: 5rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.uiux-features {
    display: grid;
    gap: 2rem;
}

.uiux-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.uiux-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.uiux-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.uiux-feature h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.uiux-feature p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* -----------------------------------------------
   13. Sign Up CTA Section
   ----------------------------------------------- */
.signup-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cpattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"%3E%3Cpath d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/%3E%3C/pattern%3E%3C/defs%3E%3Crect width="100" height="100" fill="url(%23grid)" /%3E%3C/svg%3E');
    opacity: 0.3;
}

.signup-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.signup-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.signup-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.signup-header p {
    font-size: 1.4rem;
    opacity: 0.95;
}

.signup-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.signup-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

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

.benefits-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.benefits-card h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item-new {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.benefit-item-new:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.check-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item-new h4 {
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.benefit-item-new p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.stat-mini {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    color: white;
}

.stat-mini-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-mini-label {
    font-size: 0.9rem;
    opacity: 0.95;
}

.form-card {
    background: white;
}

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

.form-header h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-gray);
}

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

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-row.two-col {
    grid-template-columns: 1fr 1fr;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
    background: #f8f9fa;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.input-group select {
    cursor: pointer;
}

.input-group textarea {
    resize: vertical;
}

.btn-submit-modern {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-submit-modern .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.btn-submit-modern:hover .arrow {
    transform: translateX(5px);
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.form-footer p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.response-time {
    color: #667eea;
    font-weight: 600;
}

/* -----------------------------------------------
   14. Hero Sections for Inner Pages
   ----------------------------------------------- */
.about-hero {
    background: linear-gradient(135deg, var(--secondary-color), #003366);
    color: var(--light);
    padding: 120px 5% 80px;
    text-align: center;
    margin-top: 60px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
}

.services-hero {
    background: linear-gradient(135deg, var(--secondary-color), #003366);
    color: var(--light);
    padding: 120px 5% 80px;
    text-align: center;
    margin-top: 60px;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color), #003366);
    color: var(--light);
    padding: 120px 5% 80px;
    text-align: center;
    margin-top: 60px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
}

/* -----------------------------------------------
   15. Breadcrumb
   ----------------------------------------------- */
.breadcrumb {
    padding: 1.5rem 5%;
    background: var(--gray);
    margin-top: 60px;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-right: 0.5rem;
}

.breadcrumb span {
    color: var(--text-gray);
    margin: 0 0.5rem;
}

/* -----------------------------------------------
   16. About Content Section
   ----------------------------------------------- */
.about-content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-intro .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Two Column Section */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
    align-items: center;
}

.content-column h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.content-column p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1rem;
    text-align: justify;
}

.image-column {
    position: relative;
}

/* About page image-placeholder override (gradient variant) */
.about-content .image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: var(--light);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

/* -----------------------------------------------
   17. Mission & Vision
   ----------------------------------------------- */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.mission-card,
.vision-card {
    background: var(--light);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    border-top: 5px solid var(--primary-color);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mission-icon,
.vision-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* -----------------------------------------------
   18. Core Values
   ----------------------------------------------- */
.core-values {
    background: var(--gray);
    padding: 80px 5%;
    margin: 60px 0;
}

.core-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.core-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 50px;
}

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

.value-item {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    color: var(--light);
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.value-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -----------------------------------------------
   19. Stats Section for Inner Pages
   ----------------------------------------------- */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color), #003366);
    padding: 80px 5%;
    color: var(--light);
}

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

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stats-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: bold;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* -----------------------------------------------
   20. Team Section
   ----------------------------------------------- */
.team-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--light);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.team-member h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* -----------------------------------------------
   21. CTA Section
   ----------------------------------------------- */
.cta-section {
    background: var(--gray);
    padding: 80px 5%;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--light);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    padding: 15px 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.cta-btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--light);
}

/* -----------------------------------------------
   22. Footer
   ----------------------------------------------- */
footer {
    background: #F7FAFC;
    color: #333333;
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #555555;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: #777777;
}

/* -----------------------------------------------
   Generic CMS Page Content
   ----------------------------------------------- */
.page-content {
    padding: 60px 5%;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #444;
}

.page-container h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.page-container p {
    margin-bottom: 1rem;
}

.page-container ul,
.page-container ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-container li {
    margin-bottom: 0.5rem;
}

/* -----------------------------------------------
   23. Partners Section
   ----------------------------------------------- */
.partners-section {
    background: #f8f9fa;
    padding: 80px 5%;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

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

.partner-logo-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.partner-logo-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.partner-logo-box img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* -----------------------------------------------
   24. Contact Page Styles
   ----------------------------------------------- */
.contact-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    padding: 0 5% 80px;
    max-width: 1200px;
    margin: auto;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 400px;
    background: var(--gray);
}

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    background: var(--gray);
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-question.active {
    background: rgba(0, 78, 137, 0.05);
    color: var(--secondary-color);
}

.faq-arrow {
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s;
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* -----------------------------------------------
   25. Animations
   ----------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------------------
   26. Responsive Design
   ----------------------------------------------- */

/* Medium screens (tablets / small desktops) */
@media (max-width: 968px) {
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title-left {
        font-size: 2rem;
        text-align: center;
    }

    .why-choose-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .uiux-content {
        grid-template-columns: 1fr;
    }

    .signup-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Small screens (mobile) */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    nav ul {
        display: none;
    }

    /* Banner slider */
    .banner-slider {
        height: 450px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Services slider */
    .services-slide {
        grid-template-columns: 1fr;
    }

    .services-slider-btn {
        padding: 0.8rem 1rem;
        font-size: 1.2rem;
    }

    /* Services page grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Why choose section */
    .stat-box {
        padding: 1.5rem;
    }

    .stat-number-large {
        font-size: 2.5rem;
    }

    .image-placeholder {
        padding: 3rem 2rem;
    }

    .placeholder-icon {
        font-size: 4rem;
    }

    .image-placeholder h2 {
        font-size: 2rem;
    }

    .image-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* DigiSeva */
    .digiseva-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .digiseva-feature-card {
        padding: 2rem 1.5rem;
    }

    .digiseva-icon {
        font-size: 3rem;
    }

    .digiseva-feature-card h3 {
        font-size: 1.3rem;
    }

    /* UIUX */
    .uiux-images {
        height: 400px;
    }

    .phone-frame {
        width: 250px;
        height: 500px;
    }

    .side-phone-1,
    .side-phone-2 {
        display: none;
    }

    .uiux-feature {
        flex-direction: column;
        text-align: center;
    }

    /* Signup */
    .signup-header h2 {
        font-size: 2.5rem;
    }

    .signup-header p {
        font-size: 1.1rem;
    }

    .signup-card {
        padding: 2rem;
    }

    .benefits-card h3 {
        font-size: 1.5rem;
    }

    .card-icon {
        font-size: 3rem;
    }

    .form-row.two-col {
        grid-template-columns: 1fr;
    }

    .stats-mini {
        grid-template-columns: 1fr;
    }

    /* About page hero */
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    /* Services page hero */
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    /* Contact page hero */
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    /* About inner page headings */
    .about-intro h2,
    .core-values h2,
    .stats-header h2,
    .team-section h2,
    .cta-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .content-column h3 {
        font-size: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    /* CTA buttons stack */
    .cta-buttons {
        flex-direction: column;
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
    }

    .partner-logo-box {
        padding: 1.5rem;
        min-height: 100px;
    }

    .partner-logo-box img {
        max-width: 120px;
        max-height: 50px;
    }

    .category-title {
        font-size: 1.2rem;
    }

    /* Contact page */
    .contact-form {
        padding: 25px;
    }

    .contact-form h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 15px 20px;
    }

    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}
