/* 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-color: #f8f9fa;
}

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

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

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand i {
    font-size: 2rem;
    color: #fff;
}

.logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Carousel */
.hero-carousel {
    margin-top: 80px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-content {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 3rem;
}

.carousel-text {
    flex: 1;
    color: #fff;
}

.carousel-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.carousel-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.carousel-text .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    max-width: fit-content;
}

.carousel-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.carousel-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding: 0;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Main Content */
main {
    padding: 4rem 0;
}

/* Enhanced Products Section */
.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

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

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay i {
    color: #fff;
    font-size: 2.5rem;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.product-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
}

.product-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Remove individual button styles to ensure consistency */
.btn-view,
.btn-download {
    /* Styles are inherited from .btn */
}

.btn-view:hover,
.btn-download:hover {
    /* Hover styles are inherited from .btn:hover */
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 2rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Footer Bottom Centering */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);    
    text-align: center;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* Product Details Page Styles */
.breadcrumb {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    color: #718096;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5rem;
    color: #cbd5e0;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.product-details {
    margin-bottom: 4rem;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    display: block;
    object-fit: cover;
}

.product-image img:hover {
    transform: scale(1.02);
}

.product-header {
    margin-bottom: 2rem;
}

.product-header h1 {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.product-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
}

.product-rating i {
    color: #f6ad55;
}

.rating-count {
    color: #718096;
    font-size: 0.9rem;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.product-features i {
    color: #48bb78;
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: #f7fafc;
    color: #4a5568;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #edf2f7;
    color: #2d3748;
    text-decoration: none;
    border-color: #cbd5e0;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.spec-item i {
    color: #667eea;
    width: 20px;
}

.btn-download {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Screenshot Section */
.screenshot-section {
    margin-bottom: 4rem;
}

.screenshot-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.screenshot-slides {
    display: flex;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.screenshot-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.screenshot-nav.prev {
    left: -25px;
}

.screenshot-nav.next {
    right: -25px;
}

.screenshot-nav:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.screenshot-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Features Detailed Section */
.features-detailed {
    margin-bottom: 4rem;
}

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

/* System Requirements Section */
.system-requirements {
    margin-bottom: 4rem;
}

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

.requirement-card {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.requirement-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.requirement-card i {
    color: #667eea;
}

.requirement-card p {
    color: #4a5568;
    margin: 0;
}

/* Related Products Section */
.related-products {
    margin-bottom: 4rem;
}

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

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

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

/* Product Features List */
.product-features-list {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.product-features-list h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-features-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-features-list i {
    color: #28a745;
    font-size: 0.9rem;
}

/* Screenshot Slider */
.screenshot-slider {
    display: block;
    margin-top: 3rem;
    padding: 2rem 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.screenshot-slider h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    text-align: center;
}

.screenshot-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 1000px;
}

.screenshot-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.screenshot-slide {
    min-width: 100%;
    position: relative;
}

.screenshot-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.screenshot-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.screenshot-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.screenshot-nav.prev {
    left: 20px;
}

.screenshot-nav.next {
    right: 20px;
}

.screenshot-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.screenshot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.screenshot-dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.2);
}

/* Contact Page Styles */
.contact-section {
    padding: 2rem 0 0 0;
}

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

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-header h1 i {
    color: #667eea;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    order: 1;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #667eea;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.contact-info {
    display: flex;
    justify-content: center;
    order: 2;
}

.contact-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 400px;
    width: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-item i {
    font-size: 2rem;
    color: #667eea;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-description {
    font-size: 0.9rem !important;
    color: #888 !important;
    font-style: italic;
}

/* Responsive Design for Contact Page */
@media (min-width: 768px) {
    .contact-content {
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 3rem;
    }
    
    .contact-form h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .contact-content {
        flex-direction: row;
        align-items: flex-start;
        max-width: 1000px;
    }
    
    .contact-form {
        flex: 2;
        order: 1;
    }
    
    .contact-info {
        flex: 1;
        order: 2;
        justify-content: flex-start;
    }
    
    .contact-item {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
}

.notification.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
}

.notification.error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
}

.notification.info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #fff;
}

.notification-content {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Menu */
@media (max-width: 1024px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .carousel-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .carousel-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .carousel-text h2 {
        font-size: 2rem;
    }

    .carousel-text p {
        font-size: 1rem;
    }

    .product-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-actions {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .btn {
        flex: 1;
        justify-content: center;
        white-space: nowrap;
        padding: 0.75rem 1rem;
    }

    .screenshot-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .screenshot-slider {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .screenshot-slider h3 {
        font-size: 1.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

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

    .carousel-text h2 {
        font-size: 1.75rem;
    }

    .products h2 {
        font-size: 1.75rem;
    }

    .product-content h3 {
        font-size: 1.25rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.875rem;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .screenshot-nav {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .screenshot-slider {
        margin-top: 1.5rem;
        padding: 1rem 0;
    }

    .screenshot-slider h3 {
        font-size: 1.25rem;
    }

    .screenshot-dot {
        width: 10px;
        height: 10px;
    }
}

.page-container {
    margin-top: 80px;
}

/* Modern Enhancements */
.product-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-tag:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 200%;
    height: 200%;
}

/* Remove screenshot slider from contact page */
.screenshot-slider {
    display: none;
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.policy-summary {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-content {
    line-height: 1.7;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.policy-intro {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.policy-highlights {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.policy-highlights h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.policy-highlights ul {
    margin: 0;
    padding-left: 1.5rem;
}

.policy-highlights li {
    margin-bottom: 0.5rem;
    color: #555;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

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

.privacy-content h2 {
    font-size: 1.8rem;
    color: #667eea;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.privacy-content h3 {
    font-size: 1.3rem;
    color: #555;
    margin: 1.5rem 0 0.5rem;
}

.privacy-content h4 {
    font-size: 1.1rem;
    color: #666;
    margin: 1rem 0 0.5rem;
}

.privacy-content p, 
.privacy-content ul {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

.privacy-content strong {
    color: #333;
}

.privacy-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

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

.contact-method {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.contact-method h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-method p {
    margin: 0;
    color: #555;
}

.contact-method a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.policy-footer {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
}

.policy-footer p {
    margin: 0.5rem 0;
    color: #666;
}

.compliance-note {
    font-style: italic;
    color: #667eea !important;
    font-weight: 500;
    margin-top: 1rem !important;
}

/* Blog Page Styles */
.blog-section {
    padding: 3rem 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.blog-header h1 {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    gap: 3rem;
}

/* Featured Blog Post */
.blog-post.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 0;
}

.blog-post.featured .blog-image {
    height: 100%;
    min-height: 400px;
}

.blog-post.featured .blog-content {
    padding: 3rem;
}

.blog-post.featured h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-post.featured .blog-excerpt {
    margin: 1.5rem 0;
}

.blog-post.featured .blog-excerpt p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Regular Blog Posts */
.blog-post {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #718096;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-category-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
}

.blog-post h2,
.blog-post h3 {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post h2 a,
.blog-post h3 a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post h2 a:hover,
.blog-post h3 a:hover {
    color: #667eea;
}

.blog-post p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-read-more {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: #fff;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.pagination-btn.next {
    padding: 0.75rem 1.5rem;
}

/* Responsive Design for Blog */
@media (max-width: 1024px) {
    .blog-post.featured {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .blog-post.featured .blog-image {
        min-height: 300px;
    }
    
    .blog-post.featured .blog-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .blog-header p {
        font-size: 1rem;
    }
    
    .blog-post.featured h2 {
        font-size: 1.75rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-post.featured .blog-content {
        padding: 1.5rem;
    }
    
    .blog-post.featured h2 {
        font-size: 1.5rem;
    }
    
    .blog-image {
        height: 200px;
    }
}

/* Blog Detail Page Styles */
.blog-detail {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.blog-detail-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.blog-detail-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    padding: 2rem;
}

.blog-detail-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: #333;
    border-left: 4px solid #667eea;
    padding-left: 1rem;
}

.blog-detail-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem 0;
    color: #444;
}

.blog-detail-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.blog-detail-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-tags {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tags .tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-author-section {
    padding: 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.author-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.author-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.author-social a {
    color: #667eea;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.author-social a:hover {
    color: #764ba2;
}

.related-posts {
    margin-top: 3rem;
}

.related-posts h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

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

.related-post {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.related-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.related-post-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h3 a:hover {
    color: #667eea;
}

.related-post-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Blog Detail */
@media (max-width: 768px) {
    .blog-detail-header h1 {
        font-size: 2rem;
    }
    
    .blog-detail-content {
        padding: 1.5rem;
    }
    
    .blog-detail-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-detail-content h3 {
        font-size: 1.2rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-detail-header {
        padding: 1.5rem;
    }
    
    .blog-detail-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-detail-content {
        padding: 1rem;
    }
    
    .blog-detail-image {
        height: 250px;
    }
    
    .related-posts h2 {
        font-size: 1.5rem;
    }
}

/* Responsive Design for Product Details */
@media (max-width: 768px) {
    .product-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-header h1 {
        font-size: 2.2rem;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-specs {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .screenshot-nav {
        width: 40px;
        height: 40px;
    }
    
    .screenshot-nav.prev {
        left: -20px;
    }
    
    .screenshot-nav.next {
        right: -20px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-details {
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .product-info h2 {
        font-size: 1.8rem;
    }
    
    .product-info p {
        font-size: 0.95rem;
    }
    
    .product-image {
        border-radius: 10px;
    }
} 