:root {
    --primary-gradient: linear-gradient(135deg, #00B35F 0%, #00D8A0 100%);
    --secondary-gradient: linear-gradient(135deg, #2D3436 0%, #636E72 100%);
    --accent-color: #00FFB3;
    --text-color: #2D3436;
    --light-bg: #F5F6FA;
    --card-shadow: 0 10px 30px rgba(0, 179, 95, 0.1);
    --hover-transform: translateY(-5px) scale(1.02);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--light-bg);
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 600;
    margin: 0 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color) !important;
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,246,250,0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: var(--primary-gradient);
    transform: rotate(-12deg);
    z-index: -1;
    opacity: 0.1;
}

.hero-content {
    position: relative;
}

.hero-image .animate-float {
    animation: heroFloat 6s ease-in-out infinite;
    will-change: transform, filter;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.08));
    transform-origin: 50% 55%;
}

@keyframes heroFloat {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-8px) rotate(-0.6deg) scale(1.005); }
    50% { transform: translateY(0) rotate(0.4deg) scale(1); }
    75% { transform: translateY(8px) rotate(-0.4deg) scale(0.997); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image .animate-float { animation: none; }
}

.hero h1 {
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .lead {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #636E72;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-outline-light {
    border: 2px solid var(--accent-color);
    color: var(--text-color);
    border-radius: 50px;
    padding: 0.9rem 2.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

/* Apps Section */
.apps-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.section-title {
    font-weight: 800;
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F6FA 100%);
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 320px;
    height: 320px;
    background: var(--primary-gradient);
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
}

.about-lead {
    font-size: 1.15rem;
    color: #636E72;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 9999px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-weight: 600;
}

.about-badge i { color: var(--accent-color); }

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-card {
    background: white;
    padding: 1.25rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-card.primary {
    background: linear-gradient(180deg, rgba(0,179,95,0.08), rgba(255,255,255,1));
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.about-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--light-bg);
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.stat {
    background: white;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 2px;
}

.stat-label {
    display: block;
    margin-top: 0.25rem;
    color: #636E72;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .about-grid { grid-template-columns: 1fr; }
}
.app-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.app-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.app-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.app-header h3 {
    margin: 0;
    font-size: 1.75rem;
    color: var(--heading-color);
    font-weight: 600;
}

.app-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.app-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
}

.app-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F6FA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: var(--hover-transform);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    background: var(--primary-gradient);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300B35F' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-info {
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: var(--primary-gradient);
    color: white;
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: var(--accent-color);
    color: white;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
}

.form-control {
    border: 2px solid var(--light-bg);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 255, 179, 0.1);
}

/* Footer */
.footer {
    background: var(--secondary-gradient);
    color: white;
    padding: 80px 0 40px;
}

.footer h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .app-preview {
        height: 300px;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        padding: 0.5rem 1rem;
        margin: 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 3rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .store-badges {
        justify-content: center;
    }

    .app-card {
        margin-bottom: 2rem;
    }

    .app-content {
        text-align: center;
    }

    .app-icon {
        position: static;
        margin: -50px auto 2rem;
    }

    .app-features span {
        margin: 0.5rem;
    }

    .contact-info {
        margin-bottom: 3rem;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    /* Disable tilt effect on tablets and below */
    .feature-card, 
    .feature-card:hover {
        transform: none !important;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        margin: 0.5rem 0 !important;
    }

    .store-badge {
        display: block;
        margin: 1rem 0;
    }

    .app-preview {
        height: 250px;
    }

    .app-content h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .contact-item i {
        margin: 0 0 1rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer {
        text-align: center;
    }

    .social-links {
        margin-top: 1rem;
    }

    .social-links a {
        margin: 0.5rem;
    }

    .website-link {
        width: 100%;
        margin: 1rem 0;
    }

    .app-stores {
        justify-content: center;
        gap: 0.5rem;
    }

    .app-stores .store-link {
        margin: 0.5rem;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .app-icon {
        width: 80px;
        height: 80px;
    }

    .app-preview {
        height: 200px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }

    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Fix for iOS devices */
@supports (-webkit-touch-callout: none) {
    .hero,
    .features-section,
    .contact {
        background-attachment: scroll;
    }
}

/* Fix for sticky hover on mobile */
@media (hover: none) {
    .btn-primary:hover::before,
    .app-card:hover,
    .feature-card:hover,
    .contact-item:hover {
        transform: none;
    }

    .nav-link:hover::after {
        width: 0;
    }
}

/* Improve accessibility */
:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 255, 179, 0.3);
}

/* About Page Styles */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(0,179,95,0.1) 0%, rgba(255,255,255,0.9) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: var(--primary-gradient);
    transform: rotate(-15deg);
    z-index: -1;
    opacity: 0.05;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #636E72;
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}

.history-section {
    padding: 100px 0;
    background: white;
}

.history-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636E72;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.75rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--accent-color);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.timeline-content p {
    color: #636E72;
    margin: 0;
    text-align: justify;
}

.mvv-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F6FA 0%, #FFFFFF 100%);
}

.mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.mvv-card p {
    color: #636E72;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #636E72;
}

.values-list i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.team-section {
    padding: 100px 0;
    background: white;
}

.section-description {
    font-size: 1.1rem;
    color: #636E72;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: justify;
}

.team-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    font-size: 2rem;
}

.team-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.team-card p {
    color: #636E72;
    margin: 0;
    font-size: 0.95rem;
    text-align: justify;
}

.cta-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    text-align: justify;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-buttons .btn-outline-light {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: white;
    color: var(--text-color);
}

/* Responsive for About Page */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        left: -1.25rem;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .mvv-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-text {
    line-height: 1.8;
    color: #636E72;
}

.legal-text h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    text-align: justify;
}

.legal-text strong {
    color: var(--text-color);
    font-weight: 600;
}

.contact-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.contact-info p {
    margin: 0;
    text-align: left;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Print styles */
@media print {
    .navbar,
    .hero-btns,
    .store-badges,
    .contact-form,
    .social-links {
        display: none !important;
    }

    .hero,
    .features-section,
    .contact {
        padding: 20px 0;
        background: none;
    }

    .app-card,
    .feature-card,
    .contact-item {
        break-inside: avoid;
        box-shadow: none;
    }
}

.store-badges {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-badge {
    text-decoration: none;
    transition: transform 0.3s ease;
    outline: none !important;
}

.store-badge:focus {
    box-shadow: none;
}

.store-badge img {
    height: 40px;
    transition: transform 0.3s ease;
}

.store-badge:hover img {
    transform: translateY(-2px);
}

.app-actions {
    margin: 2rem 0;
}

.website-link {
    display: inline-block;
    width: auto;
    min-width: 200px;
    padding: 0.8rem 2rem;
    border: 2px solid var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    background: transparent;
}

.website-link:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.website-link i {
    margin-right: 0.5rem;
}

.badge-upcoming {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: var(--light-bg);
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.website-link.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.app-stores {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.app-stores .store-link {
    text-decoration: none;
    transition: transform 0.3s ease;
    outline: none !important;
}

.app-stores .store-link:focus {
    box-shadow: none;
}

.app-stores .store-link img {
    height: 40px;
    transition: transform 0.3s ease;
}

.app-stores .store-link:hover img {
    transform: translateY(-2px);
} 