/* CSS Variables */
:root {
    --primary-color: #461ed1;
    --primary-light: #5c34e0;
    --primary-dark: #3a19b0;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #1e293b;
    --border-color: #e2e8f0;
    --shadow: 0 10px 25px rgba(70, 30, 209, 0.1);
    --shadow-lg: 0 20px 40px rgba(70, 30, 209, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

section {
    padding: 100px 0;
}

.highlight {
    color: var(--primary-color);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(70, 30, 209, 0.08);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(70, 30, 209, 0.12);
}

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

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

.logo img {
    height: 40px;
    margin-right: 12px;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

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

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.download-btn-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 5px 15px rgba(70, 30, 209, 0.2);
    transition: var(--transition) !important;
}

.download-btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(70, 30, 209, 0.3);
}

.download-btn-nav:after {
    display: none !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

/* Logo Box */
.logo-box {
    margin: 0 auto 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(70, 30, 209, 0.2);
    transition: var(--transition);
}

.logo-box:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 20px 40px rgba(70, 30, 209, 0.3);
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 160px;
    max-height: 160px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-download-ios,
.btn-download-android {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-download-ios {
    background-color: #000000;
    color: white;
}

.btn-download-android {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.btn-download-ios:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: #1a1a1a;
}

.btn-download-android:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #cccccc;
}

.btn-download-ios i,
.btn-download-android i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.btn-large {
    font-size: 1.3rem;
    font-weight: 600;
}

.app-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.highlight-item span {
    font-weight: 500;
    color: var(--text-color);
}

/* Simulator Display */
.hero-simulators {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.simulator-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.simulator-frame {
    width: 280px;
    height: 580px;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
    border: 15px solid #1e1e1e;
}

.simulator-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(70, 30, 209, 0.2);
}

.simulator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.simulator-label {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.simulator-label i {
    font-size: 1.2rem;
}

.simulator-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.connector-line {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-light), transparent);
    flex: 1;
    max-width: 200px;
}

.connector-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 20px;
    box-shadow: 0 10px 20px rgba(70, 30, 209, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.simulator-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Core Features */
.core-features {
    background-color: var(--bg-light);
}

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

.feature-showcase-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-showcase-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.feature-showcase-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-showcase-item p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.detail-tag {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* App Deep Dive Sections */
.app-deep-dive {
    position: relative;
}

.app-deep-dive.expense-manager {
    background-color: white;
}

.app-deep-dive.list-maker {
    background-color: var(--bg-light);
}

.app-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 60px;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.list-maker .app-icon {
    background: linear-gradient(135deg, var(--secondary-color), #34d399);
}

.app-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.app-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.app-feature {
    background-color: white;
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.list-maker .app-feature {
    border-left-color: var(--secondary-color);
}

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

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(70, 30, 209, 0.05);
    font-family: 'Poppins', sans-serif;
}

.list-maker .feature-number {
    color: rgba(16, 185, 129, 0.05);
}

.app-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.app-feature p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-points {
    list-style: none;
}

.feature-points li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-points li i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.list-maker .feature-points li i {
    color: var(--secondary-color);
}

.app-screenshot-showcase {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.screenshot-container {
    max-width: 900px;
    width: 100%;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.expense-screenshot,
.list-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.list-maker .screenshot-label {
    color: var(--secondary-color);
}

.screenshot-label i {
    font-size: 1.5rem;
}

/* App Integration */
.app-integration {
    background: linear-gradient(135deg, #461ed1 0%, #3a19b0 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.app-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.app-integration .section-title,
.app-integration .section-subtitle {
    color: white;
    position: relative;
    z-index: 2;
}

.app-integration .section-subtitle {
    opacity: 0.9;
}

.integration-flow {
    max-width: 800px;
    margin: 60px auto;
    position: relative;
    z-index: 2;
}

.flow-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

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

.flow-icon {
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.flow-content {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.flow-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.flow-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.integration-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.benefit-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Feature Comparison */
.feature-comparison {
    background-color: var(--bg-light);
}

.comparison-table {
    max-width: 900px;
    margin: 60px auto 0;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-category,
.comparison-app {
    padding: 25px 30px;
    display: flex;
    align-items: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.comparison-row:hover {
    background-color: rgba(70, 30, 209, 0.03);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-category {
    font-weight: 500;
    color: var(--text-color);
}

.comparison-app {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
}

.comparison-app i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.comparison-app i.fa-times {
    color: #ef4444;
}

.comparison-app i.fa-minus {
    color: #f59e0b;
}

.comparison-app i.fa-check {
    color: var(--secondary-color);
}

.comparison-app.highlight {
    background-color: rgba(70, 30, 209, 0.05);
    font-weight: 500;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.download-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.download-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.download-buttons-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-download-ios-large,
.btn-download-android-large {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 40px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
    min-width: 280px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-download-ios-large {
    background-color: #000000;
    color: white;
}

.btn-download-android-large {
    background-color: #ffffff;
    color: #333333;
}

.btn-download-ios-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background-color: #1a1a1a;
}

.btn-download-android-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-download-ios-large i,
.btn-download-android-large i {
    font-size: 2.5rem;
}

.btn-text-large {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 18px 28px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.download-feature:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.download-feature i {
    font-size: 1.5rem;
    color: white;
}

.download-feature span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

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

/* Responsive Styles */
@media (max-width: 1100px) {
    .simulator-container {
        gap: 40px;
    }

    .simulator-frame {
        width: 250px;
        height: 520px;
    }

    .app-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }

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

    .features-showcase {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .comparison-header,
    .comparison-row {
        min-width: 700px;
    }

    .download-buttons-large {
        flex-direction: column;
        align-items: center;
    }

    .btn-download-ios-large,
    .btn-download-android-large {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        gap: 20px;
        border-radius: 0 0 var(--radius) var(--radius);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 140px;
    }

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

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

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

    .simulator-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .simulator-frame {
        width: 280px;
        height: 580px;
    }

    .simulator-connector {
        flex-direction: column;
        margin: 30px 0;
    }

    .connector-line {
        width: 2px;
        height: 40px;
        max-width: none;
        max-height: 40px;
        background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
    }

    .app-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .app-title h2 {
        font-size: 2.2rem;
    }

    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .flow-icon {
        margin-right: 0;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-download-ios,
    .btn-download-android {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .download-features {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

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

    .app-highlights {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .highlight-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .feature-showcase-item {
        padding: 30px 20px;
    }

    .app-feature {
        padding: 25px 20px;
    }

    .logo-box {
        width: 100px;
        height: 100px;
        border-radius: 25px;
    }

    .hero-logo {
        width: 160px;
        height: 160px;
    }

    .btn-download-ios-large,
    .btn-download-android-large {
        min-width: auto;
        padding: 20px 30px;
    }

    /* Simple Policy Page Styles */
    .policy-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .policy-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--border-color);
    }

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

    .policy-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--primary-color);
    }

    .policy-section h3 {
        font-size: 1.3rem;
        margin: 25px 0 15px;
        color: var(--text-color);
    }

    .policy-section p {
        margin-bottom: 15px;
        line-height: 1.7;
        color: var(--text-light);
    }

    .policy-section ul {
        padding-left: 20px;
        margin: 15px 0;
    }

    .policy-section li {
        margin-bottom: 10px;
        line-height: 1.6;
        color: var(--text-light);
    }

    .policy-section a {
        color: var(--primary-color);
        text-decoration: none;
    }

    .policy-section a:hover {
        text-decoration: underline;
    }




}