/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
}

/* Header Styles - Matching AQX exactly */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    padding: 12px 0;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: #02015a;
    text-decoration: none;
}

.navbar-brand .logo i {
    margin-right: 8px;
    color: #573cff;
    font-size: 24px;
}

.nav-link {
    color: #000 !important;
    font-weight: 400;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #573cff !important;
}

.login-btn {
    color: #0000ee !important;
    text-decoration: none;
}

.cta-btn {
    background: #573cff !important;
    border: none;
    border-radius: 8px;
    padding: 11px 24px 11px 24px !important;
    color: white !important;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #4a32e6 !important;
    transform: translateY(-1px);
}

/* Hero Section - Matching AQX gradient and layout */
.hero-section {
    background: linear-gradient(135deg, #f3f7fb 0%, #e8f4fd 50%, #dde7ff 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(87, 60, 255, 0.1);
    border: 1px solid rgba(87, 60, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 14px;
}

.badge-text {
    background: #573cff;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
}

.badge-content {
    color: #573cff;
    font-weight: 500;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 500;
    color: #02015a;
    line-height: 1.1;
    margin-bottom: 32px;
    text-align: center;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-cta:hover {
    transform: translateX(8px);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-text {
    font-size: 16px;
    color: #02015a;
    font-weight: 500;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar-group {
    display: flex;
    margin-right: 8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 14px;
    color: #666;
}

.cta-arrow {
    color: #573cff;
    font-size: 20px;
}

.hero-cta-btn {
    background: #573cff !important;
    border: none;
    border-radius: 8px;
    padding: 16px 32px !important;
    font-size: 16px;
    font-weight: 500;
    color: white !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background: #4a32e6 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(87, 60, 255, 0.3);
}

.hero-subtitle {
    color: #666;
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
}

/* Hero Visual Elements */
.hero-visuals {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.card-1 {
    top: 20%;
    left: 5%;
    width: 200px;
}

.card-2 {
    top: 40%;
    right: 8%;
    width: 180px;
}

.card-3 {
    bottom: 20%;
    right: 15%;
    width: 160px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #666;
}

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

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    color: #02015a;
}

.user-role {
    font-size: 12px;
    color: #666;
}

.metric {
    font-size: 24px;
    font-weight: 700;
    color: #02015a;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #02015a;
    margin-bottom: 24px;
    text-align: center;
}

.intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

/* Trusted Brands */
.trusted-brands {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.trusted-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 32px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 18px;
    font-weight: 600;
    color: #ccc;
    opacity: 0.7;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #fff;
}

.video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #40e0d0 0%, #8a2be2 100%);
    aspect-ratio: 16/10;
}

.video-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 24px;
}

.comparison-list {
    list-style: none;
    margin-bottom: 32px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.comparison-list i {
    font-size: 16px;
}

.vs-badge {
    background: #02015a;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto;
}

.btn-outline-secondary {
    border: 1px solid #ddd;
    color: #666;
    background: transparent;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: #bbb;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #fff;
}

.cta-label {
    color: #573cff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-title {
    font-size: 36px;
    font-weight: 500;
    color: #02015a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-visuals {
    position: relative;
    height: 400px;
}

.cta-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.support-card {
    background: linear-gradient(135deg, #fff9c4 0%, #f7e98e 100%);
    top: 0;
    left: 0;
    width: 200px;
}

.sales-card {
    background: linear-gradient(135deg, #e8d5ff 0%, #d4b5ff 100%);
    top: 60px;
    right: 0;
    width: 180px;
}

.cta-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 16px;
}

.support-categories,
.sales-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.category {
    font-size: 12px;
    color: #666;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.support-icon {
    text-align: center;
}

.support-icon i {
    font-size: 24px;
    color: #02015a;
}

.cta-bottom-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #573cff !important;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    color: white;
    font-weight: 500;
    text-decoration: none;
}

/* Conversion Section */
.conversion-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.conversion-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.conversion-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.conversion-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.expert-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.expert-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #666;
}

.expert-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.expert-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.expert-name {
    font-weight: 600;
    color: #02015a;
}

.expert-role {
    font-size: 12px;
    color: #666;
}

.conversion-label {
    color: #573cff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.conversion-title {
    font-size: 36px;
    font-weight: 500;
    color: #02015a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.conversion-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Platform Section */
.platform-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.platform-label {
    color: #573cff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.platform-title {
    font-size: 36px;
    font-weight: 500;
    color: #02015a;
    line-height: 1.2;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: white;
    margin-bottom: 16px;
}

.footer-brand .logo i {
    margin-right: 8px;
    color: #573cff;
    font-size: 24px;
}

.footer-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #573cff;
}

.contact-info p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-info a {
    color: #573cff;
    text-decoration: none;
}

.footer-divider {
    border-color: #333;
    margin: 40px 0 20px;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title,
    .cta-title,
    .conversion-title,
    .platform-title {
        font-size: 28px;
    }
    
    .visual-card {
        display: none;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .brands-grid {
        gap: 24px;
    }
    
    .comparison-section .col-lg-2 {
        margin: 20px 0;
    }
    
    .cta-visuals {
        height: 300px;
        margin-top: 40px;
    }
    
    .navbar-brand .logo {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .section-title,
    .cta-title,
    .conversion-title,
    .platform-title {
        font-size: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-indicators {
        justify-content: center;
    }
}

/* Button Styles */
.btn-primary {
    background: #573cff !important;
    border: none !important;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #4a32e6 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(87, 60, 255, 0.3);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Contact Form Styles */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.form-description {
    color: #666;
    font-size: 16px;
    margin-bottom: 32px;
    text-align: center;
}

.contact-form .form-label {
    font-weight: 500;
    color: #02015a;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #573cff;
    box-shadow: 0 0 0 0.2rem rgba(87, 60, 255, 0.25);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.form-check-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    margin: 0;
}

.form-check-label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-info-section {
    padding: 60px 0;
    background: #fff;
}

.contact-info-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.contact-info-card h3 {
    color: #02015a;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.contact-item i {
    font-size: 20px;
    color: #573cff;
    width: 24px;
    text-align: center;
}

.contact-item h5 {
    color: #02015a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.contact-item a {
    color: #573cff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Pricing Page Styles */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #573cff;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #573cff;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.currency {
    font-size: 24px;
    color: #573cff;
    font-weight: 600;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #02015a;
    margin: 0 4px;
}

.period {
    font-size: 16px;
    color: #666;
}

.pricing-description {
    color: #666;
    font-size: 14px;
    text-align: center;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.pricing-features i {
    color: #573cff;
    font-size: 16px;
}

.pricing-footer {
    text-align: center;
}

.btn-outline-primary {
    border: 2px solid #573cff;
    color: #573cff;
    background: transparent;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #573cff;
    color: white;
}

.faq-section {
    padding: 80px 0;
    background: #fff;
}

.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    border: none;
    padding: 20px 24px;
    font-weight: 500;
    color: #02015a;
    font-size: 16px;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #573cff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.6;
}

/* Features Page Styles */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #573cff 0%, #4a32e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 16px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.technology-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tech-features {
    margin-top: 32px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.tech-feature i {
    font-size: 24px;
    color: #573cff;
    margin-top: 4px;
}

.tech-feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 8px;
}

.tech-feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.tech-visual {
    text-align: center;
}

.tech-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.integration-section {
    padding: 80px 0;
    background: #fff;
}

.integration-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    background: #f8f9fa;
    height: 100%;
    transition: all 0.3s ease;
}

.integration-card:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.integration-card i {
    font-size: 48px;
    color: #573cff;
    margin-bottom: 16px;
}

.integration-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 12px;
}

.integration-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.benefit-item {
    text-align: center;
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: #573cff;
    margin-bottom: 16px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* About Page Styles */
.mission-section {
    padding: 80px 0;
    background: #fff;
}

.mission-visual {
    text-align: center;
}

.mission-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.story-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
    text-align: center;
}

.values-section {
    padding: 80px 0;
    background: #fff;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #573cff 0%, #4a32e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon i {
    font-size: 32px;
    color: white;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 16px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.leadership-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.leader-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.leader-image {
    margin-bottom: 24px;
}

.leader-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #573cff;
}

.leader-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 8px;
}

.leader-title {
    color: #573cff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.leader-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.leader-contact {
    text-align: left;
    display: inline-block;
}

.leader-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #666;
}

.leader-contact i {
    color: #573cff;
    width: 16px;
}

.leader-contact a {
    color: #573cff;
    text-decoration: none;
}

.about-tech-section {
    padding: 80px 0;
    background: #fff;
}

.tech-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.tech-stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #573cff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Legal Pages Styles */
.legal-content-section {
    padding: 80px 0;
    background: #fff;
}

.legal-content {
    max-width: none;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #02015a;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #02015a;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.contact-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.contact-details p {
    margin-bottom: 8px;
}

.contact-details a {
    color: #573cff;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .tech-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .leader-photo {
        width: 120px;
        height: 120px;
    }
    
    .leader-contact {
        text-align: center;
    }
}

/* Utility Classes */
.text-primary {
    color: #573cff !important;
}

.text-danger {
    color: #dc3545 !important;
}
