/* Global Styles */
:root {
    --primary-color: #FF6B00;
    --secondary-color: #FF8A33;
    --gradient-start: #FF6B00;
    --gradient-mid: #FF8A33;
    --gradient-end: #FFA64D;
    --text-color: #1a1a1a;
    --light-text: #666666;
    --bg-color: #fafafa;
    --light-bg: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 1rem 0;
}

.section-header {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--gradient-mid), var(--gradient-end));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 107, 0, 0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 24px;
    min-height: 80px;
}

.logo h1 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

nav ul li a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.15);
    transform: translateY(-1px);
}

nav ul li a.active {
    color: white;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    z-index: 110;
    transition: var(--transition);
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.mobile-nav-toggle:active {
    transform: scale(0.95);
}

.mobile-nav-toggle i {
    transition: transform 0.3s ease;
    pointer-events: none;
}

.mobile-nav-toggle.active i {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-placeholder i {
    font-size: 8rem;
    opacity: 0.8;
}

/* About Section */
.about-section {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

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

.features-grid.three-col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 0, 0.2);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.feature-icon i {
    font-size: 2.25rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-color);
}

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



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

.steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps:before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    top: 0;
    bottom: 0;
    left: 20px;
    border-radius: 2px;
}

.step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 2rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.step-content p {
    color: var(--light-text);
}

/* Policies Section */
.policies {
    background-color: var(--light-bg);
}

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

.policy-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.policy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.policy-icon i {
    font-size: 2rem;
    color: white;
}

.policy-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-card p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    color: white;
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-hero p {
    font-size: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 5rem 0;
}

.about-section.alt-bg {
    background-color: var(--bg-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-box {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-box:hover::before {
    transform: scaleX(1);
}

.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 0, 0.2);
}

.icon-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transition: var(--transition);
}

.mission-box:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.icon-box i {
    font-size: 2.5rem;
    color: white;
}

.mission-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.mission-box p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.founders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 0, 0.2);
}

.founder-img {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transition: var(--transition);
}

.founder-card:hover .founder-img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.founder-img i {
    font-size: 5rem;
    color: white;
    opacity: 0.9;
}

.founder-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.founder-card p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1rem;
}

.platform-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-box {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.detail-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.detail-box:hover::before {
    transform: scaleX(1);
}

.detail-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 0, 0.2);
}

.detail-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.detail-box p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

.detail-box ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.detail-box ul li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.6;
}

.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-item:hover::before {
    transform: scaleX(1);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 0, 0.2);
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
    color: var(--gradient-mid);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.footer-social i {
    font-size: 1.2rem;
}

.footer-links h3, .footer-contact h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-radius: 2px;
}

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

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
    position: relative;
    padding: 0.5rem 0;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-contact p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.5), transparent);
}

/* Legal Pages Styles */
.content-page {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin: 1.5rem auto;
    max-width: 1000px;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

.content-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.content-page h2 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: -0.02em;
}

.content-page h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.last-updated {
    color: var(--light-text);
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.4;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    list-style-type: disc;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    padding-left: 0.5rem;
    line-height: 1.5;
}

.legal-section ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    counter-reset: item;
    list-style-type: decimal;
}

.legal-section ol li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.5;
    padding-left: 0.5rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
    line-height: 1.4;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-color);
    transition: all 0.2s ease;
}

.legal-section a:hover {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

/* Responsive styles for legal pages */
@media (max-width: 768px) {
    .content-page {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .content-page h2 {
        font-size: 1.6rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section h4 {
        font-size: 1.1rem;
    }
    
    .legal-section ul,
    .legal-section ol {
        margin-left: 1.5rem;
    }
} 

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: -10px;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-date {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.timeline-content {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.timeline-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(odd) {
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 20px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
    }
} 

/* Additional document-specific styling */
@media print {
    .content-page {
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    header, footer, .mobile-nav-toggle {
        display: none;
    }
}

/* Table styling for legal pages */
.legal-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.legal-section table th {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--text-color);
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.legal-section table tr:hover {
    background-color: rgba(255, 107, 0, 0.05);
}

/* Document section numbering */
.legal-section {
    counter-increment: section;
}

.legal-section h3 {
    position: relative;
}

/* Blockquote styling for legal pages */
.legal-section blockquote {
    border-left: 4px solid var(--primary-color);
    background-color: rgba(255, 107, 0, 0.05);
    padding: 15px 20px;
    margin: 0 0 20px;
    font-style: italic;
    color: #555;
}

/* Definition lists for legal terms */
.legal-section dl {
    margin-bottom: 1.5rem;
}

.legal-section dt {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

.legal-section dd {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* Important notices */
.legal-notice {
    background-color: rgba(255, 107, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Code or technical sections */
.legal-section code {
    background-color: #f5f5f5;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
}

/* Improve spacing between nested lists */
.legal-section ul ul,
.legal-section ol ol,
.legal-section ul ol,
.legal-section ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Improve mobile spacing */
@media (max-width: 768px) {
    .legal-section table th,
    .legal-section table td {
        padding: 8px 10px;
    }
    
    .legal-section blockquote {
        padding: 10px 15px;
    }
} 

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-bg);
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin-top: 0;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-color);
    transition: all 0.2s ease;
}

.faq-answer a:hover {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
} 

/* App Info Page Styles */
.app-hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    color: white;
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.app-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.app-hero .container {
    position: relative;
    z-index: 1;
}

.app-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.app-hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    background: #000;
    color: white;
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.app-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.app-btn:hover::before {
    left: 100%;
}

.app-btn:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border-color: #333;
}

.app-btn i {
    font-size: 2.5rem;
    margin-right: 1.25rem;
}

.app-btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-btn small {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.app-btn strong {
    font-size: 1.2rem;
    font-weight: 700;
}

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

.app-section.alt-bg {
    background-color: var(--bg-color);
}

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

.app-info-card {
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.app-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.app-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 0, 0.2);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transition: var(--transition);
}

.app-info-card:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.app-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.app-info-card p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1rem;
}

.app-info-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.app-info-card ul li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.6;
}

.app-data-section {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.app-data-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
}

.app-data-section h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
    font-weight: 700;
}

.data-category {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.data-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.data-category h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
    font-weight: 700;
}

.data-category ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.data-category ul li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.6;
}

.data-note {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--text-color);
    border: 1px solid rgba(255, 107, 0, 0.2);
    font-weight: 500;
}

.features-info {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.feature-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-category h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

.support-category {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-icon i {
    font-size: 2rem;
    color: white;
}

.support-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.support-category p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.support-category a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.support-category a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .app-hero {
        padding: 3rem 0;
    }
    
    .app-hero h1 {
        font-size: 2rem;
    }
    
    .app-section {
        padding: 2.5rem 0;
    }
    
    .app-info-card, 
    .app-data-section,
    .features-info {
        padding: 1.5rem;
    }
    
    .support-category {
        padding: 1.5rem;
    }
} 

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .hero-image {
        width: 80%;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    /* Show navigation menu on tablets */
    nav ul {
        display: flex;
    }
}

@media (max-width: 768px) {
    section {
        padding: 2.5rem 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        border-radius: 16px;
        font-weight: 600;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 18px;
    }
    
    /* Modern Mobile Header */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 107, 0, 0.1);
    }
    
    header .container {
        padding: 1rem 20px;
        min-height: 75px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Modern Mobile Navigation Toggle */
    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
        border: none;
        border-radius: 12px;
        padding: 0.8rem;
        min-width: 48px;
        min-height: 48px;
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-nav-toggle:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
    }
    
    .mobile-nav-toggle i {
        color: white;
        font-size: 1.3rem;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-nav-toggle.active i {
        transform: rotate(90deg);
    }
    
    .logo-image {
        height: 65px;
        max-width: 220px;
    }
    
    /* Modern Mobile Navigation Menu */
    nav ul {
        display: none;
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 99;
        border-top: 1px solid rgba(255, 107, 0, 0.1);
        border-radius: 0 0 20px 20px;
    }
    
    nav ul.show {
        display: flex !important;
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: visible;
        opacity: 1;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    nav ul li {
        margin: 0.3rem 0;
        text-align: center;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 1.2rem 2rem;
        margin: 0 1.5rem;
        border-radius: 16px;
        border: 2px solid transparent;
        width: calc(100% - 3rem);
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 1.05rem;
        color: var(--text-color);
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    nav ul li a:hover {
        background: rgba(255, 107, 0, 0.1);
        border-color: rgba(255, 107, 0, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15);
        color: var(--primary-color);
    }
    
    nav ul li a.active {
        color: white;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
        border-color: var(--primary-color);
        box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
        transform: translateY(-3px);
    }
    
    /* Modern Mobile Hero Section */
    .hero {
        padding: 3.5rem 0;
        background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    
    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        line-height: 1.6;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        margin: 0;
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hero-buttons .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
        margin: 0 auto;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .image-placeholder i {
        font-size: 5rem;
        opacity: 0.9;
    }
    
    /* Modern Mobile Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .features-grid.three-col {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 107, 0, 0.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
    }
    
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        border-color: rgba(255, 107, 0, 0.2);
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 20px;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
    }
    
    .feature-icon i {
        font-size: 2rem;
        color: white;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-color);
    }
    
    .feature-card p {
        color: var(--light-text);
        line-height: 1.6;
        font-size: 1rem;
    }
    
    /* How It Works Section */
    .steps:before {
        left: 30px;
    }
    
    .step {
        padding-left: 60px;
    }
    
    .step-number {
        left: 0;
    }
    
    /* Policies Section */
    .card-container {
        grid-template-columns: 1fr;
    }
    
    /* Modern Mobile CTA Section */
    .cta {
        padding: 4rem 0;
        background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }
    
    .cta .container {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 0 1rem;
    }
    
    .cta h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }
    
    .cta p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.95;
        line-height: 1.6;
    }
    
    .cta .btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .cta .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }
    
    /* About Page */
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .founders {
        grid-template-columns: 1fr;
    }
    
    .platform-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-info {
        grid-template-columns: 1fr;
    }
    
    /* Modern Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-social a {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .footer-social a:hover {
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    }
    
    .footer-links, .footer-contact {
        margin-top: 1rem;
    }
    
    .footer-links h3, .footer-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links h3::after, .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .footer-links ul li a {
        font-size: 1rem;
        padding: 0.5rem 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .footer-links ul li a:hover {
        transform: translateX(5px);
        color: var(--primary-color);
    }
    
    .footer-contact p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header h2:after {
        width: 60px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Ultra Mobile Hero */
    .hero {
        padding: 3rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        padding: 1rem 1.8rem;
        font-size: 1rem;
        max-width: 260px;
    }
    
    .logo-image {
        height: 55px;
        max-width: 180px;
    }
    
    /* Ultra Mobile Navigation */
    .mobile-nav-toggle {
        padding: 0.7rem;
        font-size: 1.2rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    nav ul {
        top: 70px;
        padding: 1rem 0;
        border-radius: 0 0 16px 16px;
    }
    
    nav ul li a {
        padding: 1rem 1.5rem;
        margin: 0 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Ultra Mobile Features */
    .feature-card {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    /* Ultra Mobile CTA */
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .policy-card {
        padding: 1.2rem;
    }
    
    .policy-icon {
        width: 50px;
        height: 50px;
    }
    
    .policy-icon i {
        font-size: 1.5rem;
    }
    
    .policy-card h3 {
        font-size: 1.2rem;
    }
    
    .cta h2 {
        font-size: 1.6rem;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .mission-box {
        padding: 1.2rem;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
    }
    
    .icon-box i {
        font-size: 1.5rem;
    }
    
    .mission-box h3 {
        font-size: 1.2rem;
    }
    
    .founder-card {
        padding: 1.2rem;
    }
    
    .founder-img {
        width: 80px;
        height: 80px;
    }
    
    .founder-card h3 {
        font-size: 1.2rem;
    }
    
    .detail-box {
        padding: 1.2rem;
    }
    
    .detail-box h3 {
        font-size: 1.2rem;
    }
    
    .info-item {
        padding: 1.2rem;
    }
    
    .info-item h3 {
        font-size: 1.2rem;
    }
    
    /* App Info Page */
    .app-hero h1 {
        font-size: 1.8rem;
    }
    
    .app-btn {
        padding: 8px 15px;
    }
    
    .app-btn i {
        font-size: 1.8rem;
    }
    
    .app-btn strong {
        font-size: 1rem;
    }
    
    .app-info-card, 
    .app-data-section,
    .features-info {
        padding: 1.2rem;
    }
    
    .info-icon,
    .support-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i,
    .support-icon i {
        font-size: 1.5rem;
    }
    
    /* Legal Pages */
    .content-page {
        padding: 1.2rem;
        margin: 0.5rem auto;
    }
    
    .content-page h2 {
        font-size: 1.4rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
        padding-left: 10px;
    }
    
    .legal-section h4 {
        font-size: 1rem;
    }
}

/* Modern Mobile Enhancements */
@media (max-width: 480px) {
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
    }
    
    /* Better touch targets */
    .btn, .mobile-nav-toggle, nav ul li a {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Improved focus states for accessibility */
    .btn:focus, .mobile-nav-toggle:focus, nav ul li a:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Better loading states */
    .feature-card, .hero-buttons .btn {
        will-change: transform;
    }
    
    /* Optimized animations for mobile */
    .feature-card:hover {
        transform: translateY(-6px);
    }
    
    .hero-buttons .btn:hover {
        transform: translateY(-3px);
    }
}

/* Fix for footer on very small screens */
@media (max-width: 350px) {
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .footer-links h3, 
    .footer-contact h3 {
        font-size: 1.1rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-social i {
        font-size: 1rem;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .footer-logo p {
        font-size: 1rem;
    }
    
    /* Ultra small screen optimizations */
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
} 