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

:root {
    --primary-color: #ff006e;
    --secondary-color: #8338ec;
    --accent-color: #3a86ff;
    --dark-bg: #0d0221;
    --light-bg: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --gradient: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navbar */
.navbar {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo i {
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.header-icons {
    display: none;
    align-items: center;
    gap: 1rem;
}

.download-icon-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon-btn:hover {
    background: #ff3385;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #333;
    border: none;
}

.hamburger:hover {
    background: #1a1a1a;
}

.hamburger.active {
    background: #333;
    border-radius: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span {
    background: white;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    gap: 4rem;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(131, 56, 236, 0.05));
}

.hero-content {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
}

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

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

.hero-image {
    perspective: 1000px;
}

.floating-card {
    width: 300px;
    height: 400px;
    background: var(--gradient);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(255, 0, 110, 0.3);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.card-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--light-bg);
}

.features h2,
.about h2,
.download h2,
.faq h2,
.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.25);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.5);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

/* About Section */
.about {
    padding: 6rem 0;
}

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

.about-text h2 {
    text-align: left;
    font-size: 2.2rem;
}

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

.about-list {
    list-style: none;
    margin-top: 2rem;
}

.about-list li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    background: var(--gradient);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2);
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
}

.download-btn i {
    font-size: 1.5rem;
}

.download-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(131, 56, 236, 0.05));
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact > .container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

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

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
}

.contact-form button {
    padding: 1rem;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

/* Footer Buttons Section */
.footer-buttons {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.footer-buttons h3 {
    text-align: center;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 0.5rem;
    min-height: 120px;
}

.footer-btn i {
    font-size: 1.8rem;
}

.footer-btn span {
    font-size: 0.9rem;
    text-align: center;
}

.footer-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 0, 110, 0.3);
}

.btn-primary.footer-btn {
    background: linear-gradient(135deg, #ff006e, #ff3385);
}

.btn-secondary.footer-btn {
    background: linear-gradient(135deg, #8338ec, #a855f7);
}

.btn-accent.footer-btn {
    background: linear-gradient(135deg, #3a86ff, #60a5fa);
}

.btn-success.footer-btn {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
}

.btn-warning.footer-btn {
    background: linear-gradient(135deg, #f59e0b, #ec4899);
}

.btn-danger.footer-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Page Content Styling */
.page-content {
    padding: 3rem 0;
    min-height: 70vh;
}

.breadcrumb {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

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

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.about-main {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro, .features-highlight, .stats-section, .team-section, .cta-section {
    margin-bottom: 3rem;
}

.about-intro h2, .features-highlight h2, .stats-section h2, .team-section h2, .cta-section h2 {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

.highlight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
    border-color: var(--primary-color);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    background: var(--gradient);
    padding: 2rem;
    border-radius: 12px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2);
}

.stat-item h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
}

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

.value-item {
    display: flex;
    gap: 1.5rem;
}

.value-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    padding: 2rem;
    border-radius: 15px;
}

.cta-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Steps and Accordion Styling */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.tip-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.faq-accordion {
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.faq-item h4 {
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-item h4:hover {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
}

.faq-item h4 i {
    color: var(--primary-color);
}

.faq-item p {
    padding: 1rem 1.2rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.feature-detail-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.feature-detail-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.feature-detail-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-detail-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: var(--gradient);
    color: white;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 0, 110, 0.05);
}

.comparison-table i {
    font-size: 1.2rem;
}

.comparison-table .fa-check {
    color: #10b981;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .nav-menu {
        display: flex !important;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        background: transparent !important;
        padding: 0.5rem 0 !important;
        order: 3;
    }

    .nav-menu li {
        flex-shrink: 0;
    }

    .nav-menu a {
        display: inline-block;
        padding: 0.6rem 1rem;
        border-radius: 8px;
        background: linear-gradient(135deg, #ff006e, #8338ec);
        color: white !important;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        color: white;
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
    }

    .nav-menu a::after {
        display: none;
    }

    .header-icons {
        display: none !important;
    }

    .hamburger {
        display: none !important;
    }

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

    /* Center all section headings on tablet */
    .features h2,
    .about h2,
    .download h2,
    .faq h2,
    .contact h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
        margin: 1rem 0;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        text-align: center;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-text h3 {
        text-align: center;
    }

    .about-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat {
        padding: 1.5rem;
        text-align: center;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    /* Contact Section */
    .contact h2 {
        text-align: center;
    }

    .contact > p {
        text-align: center;
    }

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

    .contact-info {
        text-align: center;
    }

    .contact-form {
        text-align: center;
    }

    /* Download Section */
    .download h2 {
        text-align: center;
    }

    .download > p {
        text-align: center;
    }

    .download-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    /* FAQ Section */
    .faq h2 {
        text-align: center;
    }

    .faq-item {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 0.3rem;
    }

    .nav-menu a {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .download-icon-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }

    /* Center all content on small mobile */
    .hero-content h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .hero-content p {
        font-size: 1rem;
        text-align: center;
    }

    .hero {
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 0.8rem;
    }

    .features h2,
    .about h2,
    .download h2,
    .faq h2,
    .contact h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }

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

    .feature-card p {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* About section on small mobile */
    .about-content {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-text h3 {
        text-align: center;
        font-size: 1.3rem;
    }

    .about-text p {
        text-align: center;
    }

    .about-list {
        text-align: center;
        align-items: center;
    }

    .about-list li {
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat {
        padding: 1rem;
        text-align: center;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.9rem;
    }

    /* Contact section on small mobile */
    .contact-content {
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

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

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 0.8rem;
    }

    /* Download section on small mobile */
    .download-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .download-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Extra small devices (< 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .features h2,
    .about h2,
    .download h2,
    .faq h2,
    .contact h2 {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .feature-card {
        padding: 1.2rem;
    }
}
