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

:root {
    --primary-color: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F48FB1;
    --secondary-color: #FF6B35;
    --text-dark: #212529;
    --text-light: #6c757d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ============================================
   Navigation Bar
   ============================================ */
.main-navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.logo-text {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-icon {
    font-size: 10px;
    margin-left: 4px;
    transition: var(--transition);
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    list-style: none;
    min-width: 200px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.lang-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-toggle i:last-child {
    font-size: 10px;
    margin-left: 4px;
}

.lang-flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--border-color);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 15px;
    margin-top: 8px;
    min-width: 400px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    display: none;
    /* Smooth scrolling */
    scroll-behavior: smooth;
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

/* Custom scrollbar for WebKit browsers (Chrome, Safari, Edge) */
.lang-dropdown::-webkit-scrollbar {
    width: 8px;
}

.lang-dropdown::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.lang-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-dark, #c41e3a);
}

/* Desktop hover */
@media (min-width: 769px) {
    .lang-dropdown {
        display: block;
    }
    
    .language-switcher:hover .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile click toggle */
@media (max-width: 768px) {
    .lang-dropdown {
        display: none;
    }
    
    .lang-dropdown.mobile-open {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    /* Disable hover on mobile */
    .language-switcher:hover .lang-dropdown:not(.mobile-open) {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid transparent;
    background: var(--bg-light);
}

.lang-item:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.lang-item.active {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-color: var(--primary-color);
}

.lang-flag {
    width: 32px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
}

.lang-flag-placeholder {
    width: 32px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.lang-name {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.2;
}

.lang-item:hover .lang-name {
    color: var(--primary-color);
}

.lang-item.active .lang-name {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    min-height: calc(100vh - 200px);
}

/* ============================================
   Download Button - Special Design
   ============================================ */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--primary-color);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

.download-btn:active {
    transform: translateY(0);
}

.download-btn i {
    font-size: 20px;
}

.download-btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

/* ============================================
   Content Styles
   ============================================ */
.content {
    line-height: 1.8;
    color: var(--text-dark);
}

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.content h1 {
    font-size: 2.5rem;
}

.content h2 {
    font-size: 2rem;
}

.content h3 {
    font-size: 1.75rem;
}

.content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.text-muted {
    color: var(--text-light) !important;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.content ul, .content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: var(--text-light);
}

.content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: var(--text-light);
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--text-dark);
    color: #ffffff;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

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

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

.footer-section h5 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

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

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

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

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

/* ============================================
   Hero Cover Section
   ============================================ */
.hero-cover {
    width: 100vw;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #EE4B32 0%, #EE4B32 31%, #7B1C9C 100%);
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
}

.hero-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 75, 50, 0.95) 0%, rgba(238, 75, 50, 0.95) 31%, rgba(123, 28, 156, 0.95) 100%);
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 0;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.hero-version {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

.download-btn-hero {
    margin: 15px 0;
    font-size: 20px;
    padding: 18px 40px;
}

/* Security Section */
.security-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.security-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.security-logos {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.security-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.security-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow-md);
}

.security-cm {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.security-lookout {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.security-mcafee {
    background: linear-gradient(135deg, #F44336 0%, #D32F2F 100%);
}

.security-logo span {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
}

.security-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 15px;
}

/* Phone Mockup Section */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Desktop Phone Image */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 350px;
    display: block;
}

.phone-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

/* Mobile Static Image */
.mobile-phone-image {
    display: none;
}

.mobile-phone-img {
    width: 100%;
    max-width: 335px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.desktop-phone {
    display: block;
}

/* ============================================
   Product Introduction & Features Section
   ============================================ */
.product-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.product-intro {
    text-align: center;
    margin-bottom: 60px;
}

.product-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
}

.product-name {
    color: #2196F3;
    font-weight: 700;
}

.features-section {
    text-align: center;
}

.features-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-icon i {
    font-size: 32px;
    color: var(--text-dark);
}

.feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

/* ============================================
   Download Posts Section
   ============================================ */
.download-posts-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--bg-white);
}

.download-posts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.download-posts-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

.download-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.download-post-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    padding: 20px;
    border-radius: 15px;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.download-post-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.download-post-icon i {
    font-size: 50px;
    color: #ffffff;
    z-index: 2;
}

.post-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.download-post-content {
    text-align: center;
    width: 100%;
}

.download-post-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2196F3;
    margin-bottom: 8px;
    line-height: 1.4;
}

.download-post-meta {
    font-size: 0.95rem;
    color: #2196F3;
    margin-bottom: 5px;
    line-height: 1.4;
}

.download-post-version {
    font-size: 0.9rem;
    color: #2196F3;
    margin-bottom: 3px;
}

.download-post-year {
    font-size: 0.9rem;
    color: #2196F3;
    font-weight: 500;
}

/* ============================================
   Content Blocks Section
   ============================================ */
.content-blocks-section {
    width: 100vw;
    padding: 80px 0;
    background: var(--bg-white);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.content-blocks-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-blocks-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-block-item {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 500px;
    padding: 0;
}

.content-block-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.content-block-text {
    padding: 40px 30px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.content-block-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.content-block-subheading {
    font-size: 1.45rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.content-block-image {
    width: 100%;
    padding: 0;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    height: 75%;
    min-height: 75%;
}

.content-block-image img {
    width: 25%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    width: 100vw;
    padding: 80px 0;
    background: #F8F9FA;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

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

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--bg-white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.faq-icon {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer-content {
    padding: 0 25px 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

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

/* ============================================
   Recent Blogs Section
   ============================================ */
.recent-blogs-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--bg-white);
}

.recent-blogs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.recent-blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.recent-blogs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.view-all-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.view-all-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(4px);
}

.recent-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

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

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

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.blog-card-placeholder i {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.3;
}

.blog-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex: 1;
    font-size: 0.95rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 10px;
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-date i {
    font-size: 12px;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--primary-dark);
    gap: 8px;
}

.blog-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

.no-blogs-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

/* ============================================
   Full Width Content Section
   ============================================ */
.full-content-section {
    width: 100vw;
    padding: 80px 0;
    background: var(--bg-white);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

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

.rich-content {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Headings */
.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.rich-content h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

.rich-content h2 {
    font-size: 2rem;
}

.rich-content h3 {
    font-size: 1.75rem;
}

.rich-content h4 {
    font-size: 1.5rem;
}

.rich-content h5 {
    font-size: 1.25rem;
}

.rich-content h6 {
    font-size: 1.1rem;
}

/* Paragraphs */
.rich-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.rich-content p:last-child {
    margin-bottom: 0;
}

/* Links */
.rich-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.rich-content a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

/* Lists */
.rich-content ul,
.rich-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.rich-content ul {
    list-style-type: disc;
}

.rich-content ol {
    list-style-type: decimal;
}

.rich-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.rich-content li ul,
.rich-content li ol {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

/* Images */
.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rich-content img.alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.rich-content img.alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.rich-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Blockquotes */
.rich-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    border-radius: 4px;
    font-style: italic;
    color: var(--text-light);
}

.rich-content blockquote p {
    margin-bottom: 0.5rem;
}

.rich-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Code */
.rich-content code {
    background: var(--bg-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-color);
}

.rich-content pre {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.rich-content pre code {
    background: transparent;
    padding: 0;
    color: var(--text-dark);
}

/* Tables */
.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.rich-content table th,
.rich-content table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.rich-content table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

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

.rich-content table tr:hover {
    background: var(--bg-light);
}

/* Horizontal Rule */
.rich-content hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 3rem 0;
}

/* Strong and Emphasis */
.rich-content strong,
.rich-content b {
    font-weight: 700;
    color: var(--text-dark);
}

.rich-content em,
.rich-content i {
    font-style: italic;
}

/* Divs and Sections */
.rich-content div,
.rich-content section {
    margin-bottom: 1.5rem;
}

/* Clear floats */
.rich-content::after {
    content: "";
    display: table;
    clear: both;
}

/* ============================================
   Page Content
   ============================================ */
.page-content {
    width: 100%;
}

.page-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* ============================================
   Download Section
   ============================================ */
.download-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 12px;
    margin-top: 40px;
}

.download-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.version-text {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* ============================================
   Blog Styles
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-card-body {
    padding: 20px;
    flex: 1;
}

.blog-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-card-body h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-body h3 a:hover {
    color: var(--primary-color);
}

.blog-card-body p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.blog-card-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.blog-card-footer small {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Blog Post Single */
.blog-post-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.blog-post-article {
    background: var(--bg-white);
}

.blog-post-article h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blog-post-image {
    width: 100%;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-meta {
    color: var(--text-light);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.blog-post-meta i {
    margin-right: 8px;
}

.blog-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h5 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Post Image */
.post-image {
    width: 100%;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Error Page
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 20px;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.error-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        padding: 15px 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding-left: 20px;
        background: var(--bg-light);
    }
    
    .language-switcher {
        width: 100%;
        margin-top: 20px;
    }
    
    .lang-dropdown {
        position: static;
        margin-top: 10px;
        min-width: 100%;
        max-height: 400px;
        overflow-y: auto;
        display: none;
        right: auto;
        left: 0;
    }
    
    .lang-dropdown.mobile-open {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .lang-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
    
    .lang-item {
        padding: 10px 6px;
    }
    
    .lang-flag {
        width: 28px;
        height: 21px;
    }
    
    .lang-flag-placeholder {
        width: 28px;
        height: 21px;
    }
    
    .lang-name {
        font-size: 11px;
    }
    
    .main-content {
        padding: 0px 15px;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content h2 {
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .download-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .blog-post-content {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    /* Hero Section Mobile */
    .hero-cover {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-version {
        font-size: 1rem;
    }
    
    .download-btn-hero {
        font-size: 18px;
        padding: 16px 32px;
        margin: 15px auto;
        display: inline-flex;
    }
    
    .security-logos {
        justify-content: center;
    }
    
    .security-section {
        text-align: center;
    }
    
    /* Hide desktop phone mockup on mobile */
    .desktop-phone {
        display: none !important;
    }
    
    /* Show mobile static image */
    .mobile-phone-image {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .mobile-phone-img {
        max-width: 250px;
    }
    
    .phone-mockup {
        max-width: 280px;
    }
    
    /* Product Section Mobile */
    .product-section {
        padding: 60px 15px;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .features-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-label {
        font-size: 0.9rem;
    }
    
    /* Download Posts Section Mobile */
    .download-posts-section {
        padding: 60px 15px;
    }
    
    .download-posts-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .download-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .download-post-icon {
        width: 100px;
        height: 100px;
    }
    
    .download-post-icon i {
        font-size: 40px;
    }
    
    .download-post-name {
        font-size: 1rem;
    }
    
    .download-post-meta,
    .download-post-version,
    .download-post-year {
        font-size: 0.85rem;
    }
    
    /* Recent Blogs Section Mobile */
    .recent-blogs-section {
        padding: 60px 15px;
    }
    
    .recent-blogs-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .recent-blogs-title {
        font-size: 2rem;
    }
    
    .recent-blogs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-body {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
    }
    
    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Full Content Section Mobile */
    .full-content-section {
        padding: 60px 0;
    }
    
    .full-content-container {
        padding: 0 15px;
    }
    
    .rich-content {
        font-size: 1rem;
    }
    
    .rich-content h1 {
        font-size: 2rem;
    }
    
    .rich-content h2 {
        font-size: 1.75rem;
    }
    
    .rich-content h3 {
        font-size: 1.5rem;
    }
    
    .rich-content h4 {
        font-size: 1.25rem;
    }
    
    .rich-content h5 {
        font-size: 1.1rem;
    }
    
    .rich-content h6 {
        font-size: 1rem;
    }
    
    .rich-content img.alignleft,
    .rich-content img.alignright {
        float: none;
        margin-left: 0;
        margin-right: 0;
        display: block;
        margin: 1.5rem auto;
    }
    
    .rich-content table {
        font-size: 0.9rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .rich-content blockquote {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    /* FAQ Section Mobile */
    .content-blocks-section {
        padding: 60px 0;
    }
    
    .content-blocks-container {
        padding: 0 15px;
    }
    
    .content-blocks-list {
        gap: 25px;
    }
    
    .content-block-item {
        min-height: 400px;
    }
    
    .content-block-text {
        padding: 30px 20px 20px;
    }
    
    .content-block-heading {
        font-size: 1.5rem;
    }
    
    .content-block-subheading {
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 18px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .download-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .lang-dropdown {
        min-width: 100%;
        padding: 12px;
    }
    
    .lang-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    
    /* Product Section Small Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .features-heading {
        font-size: 1.75rem;
    }
    
    /* Download Posts Section Small Mobile */
    .download-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .download-posts-title {
        font-size: 1.75rem;
    }
    
    /* FAQ Section Small Mobile */
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 18px 15px 18px;
        font-size: 0.9rem;
    }
    
    .lang-item {
        padding: 8px 4px;
    }
    
    .lang-flag {
        width: 24px;
        height: 18px;
    }
    
    .lang-flag-placeholder {
        width: 24px;
        height: 18px;
    }
    
    .lang-name {
        font-size: 10px;
    }
}
