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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #115d01 0%, #1a7a02 100%);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles (Same as homepage) */
.main-header {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 10px;
}

.navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 0;
    position: relative;
}

.logo-wrapper {
    flex-shrink: 0;
}

.site-logo {
    display: block;
    max-width: 190px;
    height: 50px;
    object-fit: contain;
}

.primary-navigation {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.primary-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.primary-navigation a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #4CAF50;
}

.current-page {
    color: #4CAF50;
    font-weight: 600;
    padding: 8px 12px;
}

.dropdown-menu {
    position: relative;
}

.dropdown-arrow {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown-menu:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 0 10px;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-button {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #4CAF50;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-button:hover {
    background: #4CAF50;
    color: #000;
}

.register-button {
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    order: 3;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Main Content */
.app-content {
    padding: 0 10px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    gap: 40px;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(17, 93, 1, 0.4);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(17, 93, 1, 0.6);
}

.download-icon {
    border-radius: 4px;
}

.hero-image {
    flex-shrink: 0;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.app-features-section,
.app-specs-section,
.download-guide-section,
.comparison-section,
.mobile-exclusive-section,
.troubleshooting-section,
.download-cta-section {
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 0;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* App Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* App Specifications */
.specs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.specs-column {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specs-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 25px;
    text-align: center;
}

.specs-list {
    display: grid;
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #333;
}

.spec-value {
    color: #666;
    text-align: right;
}

/* Download Guides */
.download-guides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.guide-column {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guide-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 25px;
    text-align: center;
}

.guide-steps {
    display: grid;
    gap: 25px;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(17, 93, 1, 0.02);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.guide-step:hover {
    transform: translateY(-2px);
    background: rgba(17, 93, 1, 0.05);
}

.guide-step .step-number {
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-heading {
    font-size: 16px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 8px;
}

.step-text {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: #115d01;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-weight: 700;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    color: #333;
    text-align: left !important;
    background: rgba(17, 93, 1, 0.05);
}

.app-feature {
    background: rgba(76, 175, 80, 0.1);
    color: #115d01;
    font-weight: 600;
}

.website-feature {
    background: rgba(255, 193, 7, 0.1);
    color: #666;
}

/* Mobile Exclusive Features */
.exclusive-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.exclusive-feature {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.exclusive-feature:hover {
    transform: translateY(-5px);
    border-color: #115d01;
}

.exclusive-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.exclusive-title {
    font-size: 20px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.exclusive-description {
    color: #666;
    line-height: 1.6;
}

/* Troubleshooting */
.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trouble-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trouble-title {
    font-size: 20px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 20px;
}

.trouble-solutions p {
    margin-bottom: 12px;
    line-height: 1.5;
    color: #666;
}

.trouble-solutions strong {
    color: #115d01;
}

.support-contact {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 40px;
}

.support-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.support-text {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.support-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-link {
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Download CTA Section */
.download-cta-section {
    background: linear-gradient(135deg, #115d01, #1a7a02);
    color: #fff;
    text-align: center;
}

.cta-heading {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-download-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-download-icon {
    border-radius: 8px;
}

.cta-download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-download-title {
    font-size: 14px;
    opacity: 0.8;
}

.cta-download-platform {
    font-size: 18px;
    font-weight: 700;
}

/* Footer Styles (Same as homepage) */
.site-footer {
    background: #000;
    color: #fff;
    padding: 50px 10px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4CAF50;
}

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

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

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

.footer-links a:hover {
    color: #4CAF50;
}

.app-download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-download-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.app-download-link:hover {
    color: #4CAF50;
}

.app-icon {
    border-radius: 8px;
}

.payment-methods-footer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.payment-methods-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #4CAF50;
}

.payment-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-method-icon:hover {
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1080px) {
    .navigation-container {
        flex-wrap: wrap;
    }
    
    .logo-wrapper {
        order: 1;
        flex: 1;
    }
    
    .auth-buttons {
        order: 2;
        gap: 10px;
    }
    
    .menu-toggle {
        display: flex;
        order: 3;
        margin-left: 15px;
    }
    
    .primary-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
        order: 4;
        flex-basis: 100%;
    }
    
    .primary-navigation.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .primary-navigation li {
        width: 100%;
        text-align: left;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .primary-navigation a,
    .current-page {
        display: block;
        padding: 18px 20px;
        font-size: 16px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        text-align: left;
        color: #fff;
        border-bottom: none;
    }
    
    .primary-navigation a:hover,
    .current-page {
        background: rgba(255, 255, 255, 0.1);
        color: #4CAF50;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        margin: 0;
        border-radius: 0;
        padding: 0;
        display: none;
    }
    
    .dropdown-content.active {
        display: block;
    }
    
    .dropdown-content li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-content a {
        font-size: 14px;
        padding: 15px 40px;
        color: rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 768px) {
	
	.auth-buttons a {
        padding: 8px 16px;
        font-size: 14px;
    }
	
    .navigation-container {
        padding: 10px 0;
    }
    
    .site-logo {
        max-width: 150px;
        height: 40px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .specs-container,
    .download-guides {
        grid-template-columns: 1fr;
    }
    
    .cta-heading {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {

    .auth-buttons a {
        padding: 6px 12px;
        font-size: 13px;
    }

    .navigation-container {
        padding: 8px 0;
    }
    
    .site-logo {
        max-width: 130px;
        height: 35px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .features-grid,
    .exclusive-features-grid,
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table-container {
        font-size: 14px;
    }
}

@media (max-width: 320px) {

    .auth-buttons a {
        padding: 5px 10px;
        font-size: 12px;
    }

    .navigation-container {
        padding: 6px 0;
    }
    
    .site-logo {
        max-width: 110px;
        height: 30px;
    }
    
    .hero-section {
        padding: 30px 15px;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
}
