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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.branding {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.brand-name {
    font-size: 26px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 5px;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
}

.download-android {
    background: linear-gradient(135deg, #3ddc84 0%, #2ecc71 100%);
}

.download-iphone {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
}

.download-windows {
    background: linear-gradient(135deg, #00a4ef 0%, #0078d4 100%);
}

.dropdown-content a:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 999;
    transition: right 0.4s ease;
    padding: 80px 20px 20px;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 30px;
}

.mobile-nav-dropdown {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.2);
}

.mobile-dropdown-content.active {
    max-height: 200px;
}

.mobile-dropdown-content a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 20px 12px 40px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.mobile-dropdown-content a:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #88A688 0%, #8F822E 100%);
    padding: 10px 50px;
    text-align: center;
}

.hero-container h1 {
    font-size: 24px;
    color: white;
    margin-bottom: 4px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-container h2 {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 20px 50px;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.features-area h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: underline;
}

.download-area {
    background: rgba(255,255,255,0.5);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.download-area h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.download-btn {
    display: block;
    width: 90%;
    max-width: 250px;
    padding: 15px 20px;
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    color: white;
    text-align: center;
}

.btn-android {
    background: linear-gradient(135deg, #3ddc84 0%, #2ecc71 100%);
}

.btn-iphone {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
}

.btn-windows {
    background: linear-gradient(135deg, #00a4ef 0%, #0078d4 100%);
}

.btn-web {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.windows-row {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* CHANGE to flex-start */
    gap: 10px;
    width: 90%; /* CHANGE back to 90% */
    max-width: 250px; /* CHANGE back to 250px */
    margin: 10px auto; /* Keep auto for centering the container */
}

.windows-row .download-btn {
    flex: 1; /* CHANGE back to 1 - takes full available space */
    margin: 0;
    width: auto; /* CHANGE to auto */
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-icon:hover {
    transform: scale(1.15);
}

.info-icon:active {
    transform: scale(1.05);
}

/* Slider Section */
.slider-section {
    position: relative;
    overflow: hidden;
    height: 360px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    gap: 80px;
    padding: 10px 80px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slide.active {
    display: flex;
    opacity: 1;
}

.slide.sliding-out-left {
    z-index: 1;
}

.slide.sliding-out-right {
    z-index: 1;
}

.slide.sliding-in-left {
    z-index: 2;
}

.slide.sliding-in-right {
    z-index: 2;
}

.slide:nth-child(1) { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.slide:nth-child(2) { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.slide:nth-child(3) { background: linear-gradient(135deg, #c3cfe2 0%, #e0e7f5 100%); }
.slide:nth-child(4) { background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); }
.slide:nth-child(5) { background: linear-gradient(135deg, #fdcbf1 0%, #e6dee9 100%); }
.slide:nth-child(6) { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); }
.slide:nth-child(7) { background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%); }
.slide:nth-child(8) { background: linear-gradient(135deg, #cd9cf2 0%, #f6f3ff 100%); }
.slide:nth-child(9) { background: linear-gradient(135deg, #a7a6cb 0%, #8989ba 100%); }
.slide:nth-child(10) { background: linear-gradient(135deg, #37ecba 0%, #72afd3 100%); }

.slide:nth-child(7) .slide-content h2,
.slide:nth-child(7) .slide-content p,
.slide:nth-child(9) .slide-content h2,
.slide:nth-child(9) .slide-content p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-image {
    flex: 0 0 300px;
    height: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img {
    font-size: 120px;
}

.slide-content {
    flex: 1;
}

.slide-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.slide-content a {
    color: #667eea;
    text-decoration: underline;
    font-weight: bold;
}

.slide-content a:hover {
    color: #764ba2;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 64px;
    color: rgba(60, 60, 60, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
    font-weight: bold;
    padding: 0;
    width: auto;
    height: auto;
}

.slider-arrow-left {
    left: 30px;
}

.slider-arrow-right {
    right: 30px;
}

.slider-arrow:hover {
    color: rgba(40, 40, 40, 0.9);
    transform: translateY(-50%) scale(1.2);
}

/* Try Section */
.try-section {
    background: linear-gradient(135deg, #feada6 0%, #f5efef 100%);
    padding: 20px 50px;
}

.try-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.try-content {
    flex: 1;
}

.try-content h2 {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 20px;
}

.try-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.info-boxes {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.info-box {
    flex: 1;
    background: #fffbcc;
    padding: 15px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 14px;
    border: 2px dashed #f5c842;
}

.verify-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.verify-input {
    flex: 1;
    padding: 15px;
    font-size: 20px;
    border: 2px solid #667eea;
    border-radius: 10px;
    text-align: center;
    letter-spacing: 5px;
}

.verify-btn {
    padding: 15px 40px;
    font-size: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.verify-btn:hover {
    transform: scale(1.05);
}

.verify-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    display: none;
}

.verify-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.verify-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.qr-container {
    flex: 0 0 300px;
    height: 300px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.modal-body {
    padding: 20px;
}

.modal-body p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.notice-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notice-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.step-text {
    flex: 1;
    color: #333;
    line-height: 1.4;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.modal-ok-btn {
    padding: 10px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-ok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#qrcode {
    width: 260px !important;
    height: 260px !important;
}

#qrcode img {
    width: 100% !important;
    height: 100% !important;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 20px 50px 10px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 10px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 14px;
}

/* About Us Page */
.about-hero {
    background: linear-gradient(135deg, #88A688 0%, #8F822E 100%);
    padding: 10px 50px;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 24px;
    margin: 6px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 50px;
    background: #f9f9f9;
}

.about-content h2 {
    font-size: 32px;
    color: #667eea;
    margin: 10px 0 10px 0;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.about-content li {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* Privacy Policy Page */
.privacy-hero {
    background: linear-gradient(135deg, #88A688 0%, #8F822E 100%);
    padding: 10px 50px;
    text-align: center;
    color: white;
}

.privacy-hero h1 {
    font-size: 24px;
    margin: 6px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 50px;
    background: white;
}

.privacy-content h2 {
    font-size: 28px;
    color: #667eea;
    margin: 10px 0 10px 0;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.privacy-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* Feedback Page */
.feedback-hero {
    background: linear-gradient(135deg, #88A688 0%, #8F822E 100%);
    padding: 10px 50px;
    text-align: center;
    color: white;
}

.feedback-hero h1 {
    font-size: 24px;
    margin: 6px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.feedback-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 50px;
    background: white;
}

.feedback-form {
    background: #f9f9f9;
    padding: 10px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.success-message.show {
    display: block;
}

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

    .brand-name {
        font-size: 20px;
    }

    .brand-logo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-container h1 {
        font-size: 18px;
    }

    .hero-container h2 {
        font-size: 14px;
    }

    .why-choose-section {
        padding: 14px 30px;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
		gap: 16px;
    }
    
    .windows-row {
        flex-direction: row;
        align-items: center; /* ADD THIS */
        justify-content: center; /* ADD THIS */
        gap: 10px; /* ADD THIS */
        max-width: 100%;
        margin: 10px auto;
    }

    .windows-row .download-btn {
        flex: 1; /* KEEP THIS for mobile */
        max-width: none; /* ADD THIS */
        width: auto; /* ADD THIS */
    }

    .info-icon {
        margin-top: 0;
        align-self: center;
    }

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

    .features-area h2 {
        font-size: 18px;
		margin-bottom: 10px;
    }
	
	.features-grid {
		gap: 2px;
	}
    
    .slider-section {
        height: auto;
        min-height: 600px;
    }

    .slide {
        flex-direction: column;
        padding: 20px 20px;
        min-height: 600px;
        gap: 30px;
    }
	
	.slide.active {
		position: relative !important;
		display: flex !important;
	}
    
    .slider-container {
        cursor: grab;
    }
    
    .slider-container:active {
        cursor: grabbing;
    }

    .slide-image {
        flex: 0 0 250px;
        width: 80%;
        height: 250px;
    }

    .placeholder-img {
        font-size: 80px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slider-arrow {
        font-size: 40px;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    .try-section {
        padding: 20px 20px;
    }

    .try-container {
        flex-direction: column;
		gap: 20px;
    }

    .try-content h2 {
        font-size: 24px;
    }

    .info-boxes {
        flex-direction: column;
    }

    .verify-container {
        flex-direction: column;
    }

    .qr-container {
        width: 100%;
    }

    .footer {
        padding: 30px 30px 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
	
	.footer-section h3,
	.footer-section h4 {
	  margin-bottom: 4px;
	}

    .about-hero h1,
    .privacy-hero h1,
    .feedback-hero h1 {
        font-size: 18px;
    }

    .about-content,
    .privacy-content,
    .feedback-content {
        padding: 10px 20px;
    }
	
	.about-content h2,
    .privacy-content h2,
    .feedback-content h2 {
		font-size: 20px;
	}
	
	.about-content p,
    .privacy-content p,
    .feedback-content p,
	.about-content li,
    .privacy-content li,
    .feedback-content li {
		font-size: 16px;
	}

    .feedback-form {
        padding: 10px;
    }
    
    .modal-content {
        max-width: 90vw;
        max-height: 90vh;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

html {
    scroll-behavior: smooth;
}