/* 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: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-logo i {
    color: #64b5f6;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #64b5f6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e3f2fd;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e8eaf6;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2196f3;
    color: white;
    border-color: #2196f3;
}

.btn-primary:hover {
    background: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1bb3e8 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-outline {
    background: transparent;
    color: #2196f3;
    border-color: #2196f3;
}

.btn-outline:hover {
    background: #2196f3;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #64b5f6;
}

.stat span {
    font-size: 0.9rem;
    color: #e3f2fd;
}

/* Dashboard Screenshot */
.dashboard-screenshot {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
    background: #ffffff;
    width: 150%;
    max-width: 800px;
}

.dashboard-screenshot:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Devices Section */
.devices {
    padding: 80px 0;
    background: #f8f9fa;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.device-category {
    text-align: center;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.device-category:hover {
    border-color: #2196f3;
    transform: translateY(-5px);
}

.device-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.device-icon i {
    font-size: 2rem;
    color: white;
}

.device-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 600;
}

.device-category ul {
    list-style: none;
    text-align: left;
}

.device-category li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.device-category li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    margin-right: 10px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e3f2fd;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: #263238;
    color: white;
    padding: 15px 0 8px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 0.8rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    margin-bottom: 0.3rem;
    color: #64b5f6;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-section h4 {
    margin-bottom: 0.3rem;
    color: #90caf9;
    font-weight: 600;
    font-size: 0.85rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-section li {
    margin-bottom: 0;
}

.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
    white-space: nowrap;
}

.footer-section a:hover {
    color: #64b5f6;
}

.footer-section p {
    color: #b0bec5;
    line-height: 1.3;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #37474f;
    padding-top: 0.6rem;
    text-align: center;
    color: #78909c;
    font-size: 0.75rem;
}

/* Medium Screen Navigation Fix */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1e3c72;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .dashboard-screenshot {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid,
    .devices-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section ul {
        gap: 0.8rem;
    }
    
    /* New responsive styles for updated sections */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .development-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .highlight {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .support-ways {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .protocol-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .status-content h2,
    .support-content h2 {
        font-size: 2rem;
    }
    
    .status-content p,
    .support-content p {
        font-size: 1.1rem;
    }
    
    .roadmap-preview {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer {
        padding: 12px 0 6px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-section ul {
        gap: 0.8rem;
        font-size: 0.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Additional mobile styles for new sections */
    .audience-card {
        padding: 1.5rem;
    }
    
    .audience-icon {
        width: 60px;
        height: 60px;
    }
    
    .audience-icon i {
        font-size: 1.5rem;
    }
    
    .support-way {
        padding: 1.5rem;
    }
    
    .support-icon {
        width: 50px;
        height: 50px;
    }
    
    .support-icon i {
        font-size: 1.2rem;
    }
    
    .protocol-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .cta-note {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 4px;
    }
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: #f8f9fa;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audience-icon i {
    font-size: 2rem;
    color: white;
}

.audience-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.audience-card p {
    color: #666;
    line-height: 1.6;
}

/* Development Status Section */
.development-status {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.status-content h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.status-content p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.development-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.highlight {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #2196f3;
}

.highlight i {
    color: #2196f3;
    font-size: 1.2rem;
}

.highlight span {
    color: #333;
    font-weight: 500;
}

.roadmap-preview {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.roadmap-preview h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.roadmap-preview ul {
    list-style: none;
    text-align: left;
}

.roadmap-preview li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.roadmap-preview li:before {
    content: "🚀";
    position: absolute;
    left: 0;
}

/* Community Support Section */
.community-support {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.support-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e8eaf6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-ways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-way {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.support-icon i {
    font-size: 1.5rem;
    color: white;
}

.support-way h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.support-way p {
    color: #e8eaf6;
    font-size: 1rem;
    line-height: 1.6;
}

.support-cta {
    margin-top: 2rem;
}

.support-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Protocol Support */
.protocol-support {
    margin-top: 3rem;
    text-align: center;
}

.protocol-support h3 {
    color: #1e3c72;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.protocol-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.protocol-item i {
    color: #2196f3;
    font-size: 1.2rem;
}

.protocol-item span {
    color: #333;
    font-weight: 500;
}

/* Coming Soon Badge */
.coming-soon-badge {
    margin-top: 1rem;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.coming-soon-badge i {
    font-size: 1rem;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}

.footer-badges .badge i {
    font-size: 0.9rem;
}

/* CTA Note */
.cta-note {
    margin-top: 1rem;
    color: #e8eaf6;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    color: #64b5f6;
}

/* Additional styles for brand-independent website with constant development emphasis */

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.2rem;
    color: #e3f2fd;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-highlights .highlight {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.development-note {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    border-left: 4px solid #2196f3;
}

.development-note .note-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.development-note .note-icon i {
    font-size: 1.5rem;
    color: white;
}

.development-note h3 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.development-note ul {
    list-style: none;
    padding: 0;
}

.development-note li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.development-note li:before {
    content: "→";
    color: #2196f3;
    font-weight: bold;
    font-size: 1.2rem;
}

.support-note {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.support-note h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.support-note p {
    color: #e3f2fd;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.support-note .btn {
    background: white;
    color: #1e3c72;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-note .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.contact-methods h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-methods .method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-methods .method i {
    color: #2196f3;
    font-size: 1.2rem;
    width: 24px;
}

.contact-methods .method strong {
    color: #1e3c72;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-methods .method span {
    color: #666;
    font-size: 0.9rem;
}

.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.contact-form h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3c72;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.3);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-note i {
    color: #2196f3;
    margin-right: 5px;
}

/* Community Impact Section */
.community-impact {
    padding: 80px 0;
    background: white;
}

.impact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.impact-content h2 {
    text-align: center;
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.impact-content p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.impact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.impact-icon i {
    font-size: 1.5rem;
    color: white;
}

.impact-item h3 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.impact-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.development-stats {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
}

.development-stats h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #64b5f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #e3f2fd;
    font-size: 0.9rem;
}

/* FAQ Contact Section */
.faq-contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-contact h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-contact .section-header p {
    color: #666;
    font-size: 1.2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    border-left: 4px solid #2196f3;
}

.faq-item h3 {
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.final-cta .cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    color: #e3f2fd;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-action {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cta-action h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-action p {
    color: #e3f2fd;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-action .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-action .btn-primary {
    background: white;
    color: #1e3c72;
}

.cta-action .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-action .btn:hover {
    transform: translateY(-2px);
}

.community-note {
    color: #e3f2fd;
    font-size: 1.1rem;
    font-style: italic;
}

.community-note i {
    color: #ff4757;
    margin-right: 8px;
}

/* Support Page Styles */
.support-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.support-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.support-header p {
    font-size: 1.2rem;
    color: #e3f2fd;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.support-highlights .highlight {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-start {
    padding: 80px 0;
    background: #f8f9fa;
}

.quick-start .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-start .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quick-start h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.quick-start .section-header p {
    color: #666;
    font-size: 1.2rem;
}

.start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    position: relative;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-content {
    margin-top: 1rem;
}

.step-content h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-actions {
    margin-top: 1rem;
}

.step-actions .btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.step-actions .btn-primary {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    color: white;
}

.step-actions .btn-outline {
    background: transparent;
    color: #2196f3;
    border: 2px solid #2196f3;
}

.step-actions .btn:hover {
    transform: translateY(-2px);
}

.documentation {
    padding: 80px 0;
    background: white;
}

.documentation .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.documentation .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.documentation h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.documentation .section-header p {
    color: #666;
    font-size: 1.2rem;
}

.doc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.doc-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    border-left: 4px solid #2196f3;
}

.doc-section .doc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.doc-section .doc-icon i {
    font-size: 1.5rem;
    color: white;
}

.doc-section h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.doc-content h4 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.doc-content ul,
.doc-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.doc-content li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.support-cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.support-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.support-cta p {
    font-size: 1.2rem;
    color: #e3f2fd;
    margin-bottom: 2rem;
}

.support-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.support-cta .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-cta .btn-primary {
    background: white;
    color: #1e3c72;
}

.support-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.support-cta .btn:hover {
    transform: translateY(-2px);
}

.development-note {
    color: #e3f2fd;
    font-size: 0.9rem;
    font-style: italic;
}

.development-note i {
    color: #64b5f6;
    margin-right: 5px;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-badges .badge {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-badges .badge i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-header h1,
    .support-header h1,
    .impact-content h2,
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .contact-highlights,
    .support-highlights {
        gap: 0.8rem;
    }
    
    .contact-highlights .highlight,
    .support-highlights .highlight {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .start-steps {
        grid-template-columns: 1fr;
    }
    
    .impact-grid,
    .stats-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        grid-template-columns: 1fr;
    }
    
    .support-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .development-note,
    .support-note,
    .contact-form-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero,
    .support-hero {
        padding: 100px 0 60px;
    }
    
    .contact-header h1,
    .support-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-header p,
    .support-header p {
        font-size: 1rem;
    }
    
    .impact-content h2,
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .doc-section {
        padding: 1.5rem;
    }
    
    .support-cta {
        padding: 2rem;
    }
}

/* Additional utility classes */
.feedback-request {
    text-align: center;
    color: #e3f2fd;
    font-size: 1rem;
    margin-top: 1rem;
}

.feedback-request a {
    color: #64b5f6;
    text-decoration: none;
}

.feedback-request a:hover {
    text-decoration: underline;
}

.cta-note {
    text-align: center;
    color: #e3f2fd;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.cta-note i {
    color: #64b5f6;
    margin-right: 5px;
}

/* Coming Soon Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-message {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.modal-btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.modal-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-message {
        font-size: 1rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
} 

/* ===========================================
   GDPR & Cookie Consent Styles
   =========================================== */

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #64b5f6;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-banner.hide {
    transform: translateY(100%);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-banner-icon {
    flex-shrink: 0;
}

.cookie-banner-icon i {
    font-size: 2.5rem;
    color: #ffc107;
    animation: pulse 2s infinite;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    color: #ffffff;
    font-weight: 600;
}

.cookie-banner-text p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e8eaf6;
}

.privacy-links {
    margin: 8px 0 0 0 !important;
}

.privacy-links a {
    color: #64b5f6;
    text-decoration: underline;
    font-weight: 500;
}

.privacy-links a:hover {
    color: #90caf9;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-accept-all {
    background: #4caf50;
    color: white;
}

.btn-accept-all:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.btn-necessary {
    background: #ff9800;
    color: white;
}

.btn-necessary:hover {
    background: #f57c00;
    transform: translateY(-1px);
}

.btn-customize {
    background: transparent;
    color: white;
    border: 2px solid #64b5f6;
}

.btn-customize:hover {
    background: #64b5f6;
    color: #1e3c72;
}

/* Cookie Preferences Modal */
.cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.cookie-preferences-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-preferences-modal.hide {
    opacity: 0;
    visibility: hidden;
}

.preferences-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-preferences-modal.show .preferences-modal-content {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.modal-body {
    padding: 30px;
}

.preferences-intro {
    margin-bottom: 25px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.preferences-intro p {
    margin: 0;
    color: #555;
}

.cookie-categories {
    margin-bottom: 25px;
}

.cookie-category {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fafafa;
}

.category-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
}

.category-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #4caf50;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

input:disabled + .toggle-slider {
    background-color: #4caf50;
    cursor: not-allowed;
}

.category-details {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.category-details p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.required-notice {
    color: #ff9800 !important;
    font-weight: 500;
    margin-top: 8px !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gdpr-notice {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.gdpr-notice h4 {
    margin: 0 0 10px 0;
    color: #1976d2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gdpr-notice p {
    margin: 0;
    color: #555;
}

.gdpr-notice a {
    color: #1976d2;
    text-decoration: underline;
}

.modal-footer {
    padding: 20px 30px;
    background: #f9f9f9;
    border-radius: 0 0 12px 12px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-save {
    background: #2196f3;
    color: white;
}

.btn-save:hover {
    background: #1976d2;
}

/* Cookie Settings Button (Floating) */
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 9999;
}

.cookie-settings-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Success Toast */
.cookie-success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10002;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.cookie-success-toast.show {
    transform: translateX(0);
}

.cookie-success-toast.hide {
    transform: translateX(400px);
}

/* Mobile Responsive for Cookie Components */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
        justify-content: center;
    }

    .preferences-modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cookie-settings-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .cookie-success-toast {
        right: 15px;
        left: 15px;
        transform: translateY(-100px);
    }

    .cookie-success-toast.show {
        transform: translateY(0);
    }

    .cookie-success-toast.hide {
        transform: translateY(-100px);
    }
}

@media (max-width: 480px) {
    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .btn-cookie {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }
}

/* Donate Section */
.donate-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.donate-content {
    max-width: 800px;
    margin: 0 auto;
}

.donate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
}

.donate-icon i {
    font-size: 2rem;
    color: white;
}

.donate-header h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.donate-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.donate-actions {
    margin-top: 2rem;
}

.donation-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.amount-input-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.amount-input-section label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
}

#donation-amount {
    padding: 15px 20px;
    font-size: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    width: 150px;
    background: white;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

#donation-amount:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    transform: scale(1.05);
}

#donation-amount:hover {
    border-color: #ff6b6b;
}

.btn-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.3);
    text-transform: none;
}

.btn-donate:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #d63031 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4);
    color: white;
    text-decoration: none;
}

.btn-donate:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
}

.btn-donate i {
    font-size: 1.1rem;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

/* Mobile Responsive for Donate Section */
@media (max-width: 768px) {
    .donate-section {
        padding: 60px 0;
    }
    
    .donate-header h2 {
        font-size: 2rem;
    }
    
    .donate-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-donate {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .donate-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .donate-icon i {
        font-size: 1.5rem;
    }
    
    .donation-form {
        gap: 1rem;
    }
    
    .amount-input-section label {
        font-size: 1rem;
    }
    
    #donation-amount {
        padding: 12px 16px;
        font-size: 1.1rem;
        width: 120px;
    }
}

/* Hero Donation Button */
.btn-donate-hero {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    border: 2px solid transparent;
}

.btn-donate-hero:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1bb3e8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    color: white;
    text-decoration: none;
}

.btn-donate-hero i {
    font-size: 1rem;
}

/* Donation Page Styles */
.donation-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.donation-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.donation-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.donation-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.donation-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.donation-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.donation-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.donation-form-section {
    padding: 80px 0;
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.donation-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.donation-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.donation-card-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.donation-card-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.donation-card-header p {
    opacity: 0.9;
    margin: 0;
}

.donation-card-body {
    padding: 3rem 2rem;
}

.amount-selection h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
    text-align: center;
    font-weight: 700;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3c72;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.amount-btn:hover {
    border-color: #2a5298;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 82, 152, 0.3);
    background: rgba(42, 82, 152, 0.05);
}

.amount-btn.active {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-color: #1e3c72;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.custom-amount {
    text-align: center;
    margin-bottom: 3rem;
}

.custom-amount label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1e3c72;
    font-size: 1.1rem;
}

.amount-input-wrapper {
    position: relative;
    display: inline-block;
}

.currency-symbol {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #666;
    font-size: 1.2rem;
}

#custom-amount-input {
    padding: 15px 20px 15px 40px;
    font-size: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    width: 200px;
    background: white;
    transition: all 0.3s ease;
    font-weight: 600;
}

#custom-amount-input:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.2);
    transform: scale(1.02);
}

.btn-donate-large {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 22px 70px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-donate-large:hover {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(76, 175, 80, 0.6);
}

.btn-donate-large i {
    font-size: 1.2rem;
}

.donation-actions {
    text-align: center;
}

.donation-status {
    margin-top: 2rem;
}

.status-content {
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.status-content.loading {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #666;
}

.status-content.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.btn-retry {
    padding: 8px 16px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.donation-card-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.security-info i {
    color: #4caf50;
}

.why-donate {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.why-donate h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1e3c72;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.why-donate h3 i {
    color: #2196f3;
}

.why-donate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-item {
    text-align: center;
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 1.5rem;
    color: white;
}

.why-item h4 {
    color: #1e3c72;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.why-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Mobile Responsive for Donation Page */
@media (max-width: 768px) {
    .btn-donate-hero {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .donation-hero {
        padding: 80px 0 60px;
    }
    
    .donation-hero h1 {
        font-size: 2.2rem;
    }
    
    .donation-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .donation-icon-large i {
        font-size: 2rem;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .amount-btn {
        padding: 0.75rem;
        font-size: 1.1rem;
    }
    
    #custom-amount-input {
        width: 160px;
        font-size: 1.1rem;
    }
    
    .btn-donate-large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .why-donate-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .donation-card-body {
        padding: 2rem 1.5rem;
    }
    
    .why-donate {
        padding: 2rem 1.5rem;
    }
}

/* HowTo Pages Styles */
.howto-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.howto-header {
    max-width: 800px;
    margin: 0 auto;
}

.howto-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.howto-icon i {
    font-size: 2.5rem;
    color: white;
}

.howto-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.howto-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.howto-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.howto-list {
    padding: 60px 0;
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.howto-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.tutorial-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tutorial-list li {
    margin-bottom: 1rem;
}

.tutorial-list li a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    background: #fff;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tutorial-list li a:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-color: #1e3c72;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.howto-category {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.howto-category:hover {
    transform: translateY(-5px);
}

.category-header {
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-icon.getting-started {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
}

.category-icon.device-mgmt {
    background: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
}

.category-icon.backup {
    background: linear-gradient(135deg, #ff9800 0%, #f57000 100%);
}

.category-icon.security {
    background: linear-gradient(135deg, #f44336 0%, #c62828 100%);
}

.category-icon.advanced {
    background: linear-gradient(135deg, #9c27b0 0%, #6a1b9a 100%);
}

.category-icon.users {
    background: linear-gradient(135deg, #607d8b 0%, #37474f 100%);
}

.category-header h2 {
    color: #1e3c72;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.category-tutorials {
    padding: 0;
}

.tutorial-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.tutorial-link:hover {
    text-decoration: none;
    color: inherit;
}

.tutorial-item {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.tutorial-item:last-child {
    border-bottom: none;
}

.tutorial-link:hover .tutorial-item {
    background: rgba(30, 60, 114, 0.05);
    padding-left: 2.5rem;
}

.tutorial-item > i {
    color: #1e3c72;
    font-size: 1.3rem;
    width: 24px;
    flex-shrink: 0;
}

.tutorial-content {
    flex: 1;
}

.tutorial-content h3 {
    color: #1e3c72;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tutorial-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.tutorial-item .fa-chevron-right {
    color: #bbb;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tutorial-link:hover .fa-chevron-right {
    color: #1e3c72;
    transform: translateX(5px);
}

/* Individual Tutorial Page Styles */
.tutorial-content {
    padding: 40px 0 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tutorial-nav {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #2a5298;
    text-decoration: none;
    transform: translateX(-3px);
}

.tutorial-breadcrumb {
    color: #666;
    font-size: 0.9rem;
}

.tutorial-breadcrumb i {
    font-size: 0.7rem;
    margin: 0 0.5rem;
    opacity: 0.6;
}

.tutorial-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 2px solid #f0f0f0;
}

.tutorial-header .tutorial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.tutorial-header .tutorial-icon i {
    font-size: 2rem;
    color: white;
}

.tutorial-header h1 {
    color: #1e3c72;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tutorial-header .tutorial-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tutorial-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tutorial-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.difficulty.easy {
    color: #4caf50;
}

.duration {
    color: #2196f3;
}

.tutorial-steps {
    max-width: 1200px;
    margin: 0 auto;
}

.tutorial-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #eee;
    align-items: start;
}

.tutorial-step:last-of-type {
    border-bottom: none;
    margin-bottom: 4rem;
}

.step-content {
    padding: 1rem 0;
}

.step-content h2 {
    color: #1e3c72;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.2rem;
}

.step-screenshot {
    text-align: center;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.tutorial-image {
    max-width: 100%;
    min-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tutorial-image:hover {
    transform: scale(1.02);
}

.image-caption {
    color: #555;
    font-style: italic;
    font-size: 1rem;
    margin: 0.75rem 0 0 0;
    line-height: 1.5;
    text-align: center;
}

.tutorial-completion {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.completion-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.completion-icon i {
    font-size: 2rem;
    color: white;
}

.tutorial-completion h3 {
    color: #1e3c72;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tutorial-completion > p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h4 {
    color: #1e3c72;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.next-tutorials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.next-tutorial {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    text-decoration: none;
    color: #1e3c72;
    font-weight: 600;
    transition: all 0.3s ease;
}

.next-tutorial:hover {
    text-decoration: none;
    color: #1e3c72;
    border-color: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 82, 152, 0.2);
}

.next-tutorial i:first-child {
    font-size: 1.2rem;
    color: #2a5298;
}

.next-tutorial span {
    flex: 1;
    font-size: 0.95rem;
}

.next-tutorial .fa-arrow-right {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Download Page Styles */
.download-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.download-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.download-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.download-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.download-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.download-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.download-section {
    padding: 80px 0;
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.download-content {
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.download-card.featured {
    border: 3px solid #2a5298;
    position: relative;
}

.download-card-header {
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.download-card-header h2 {
    color: #1e3c72;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.version-date {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.download-card-body {
    padding: 2.5rem 2rem;
}

.download-features h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.download-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.download-features ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #555;
}

.download-features ul li i {
    color: #4caf50;
    font-size: 0.9rem;
}

.system-requirements {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.system-requirements h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.system-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.system-requirements ul li {
    color: #555;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.system-requirements ul li:before {
    content: "•";
    color: #1e3c72;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-download-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.4);
}

.btn-download-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.6);
    text-decoration: none;
    color: white;
}

.btn-download-large i {
    font-size: 1.5rem;
}

.btn-download-large small {
    font-size: 0.85rem;
    opacity: 0.9;
}

.previous-versions {
    margin: 3rem 0;
}

.previous-versions h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.versions-list {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.version-item:last-child {
    border-bottom: none;
}

.version-info h4 {
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.version-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.btn-outline-small {
    background: transparent;
    color: #1e3c72;
    border: 2px solid #1e3c72;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-small:hover {
    background: #1e3c72;
    color: white;
    text-decoration: none;
}

.btn-primary-small {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.4);
    text-decoration: none;
    color: white;
}

.installation-guide {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-icon i {
    font-size: 1.5rem;
    color: white;
}

.guide-content h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.guide-content p {
    color: #555;
    margin-bottom: 1rem;
}

.license-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: white;
}

.info-content h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.security-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mobile Responsive for Download Pages */
@media (max-width: 768px) {
    .download-hero {
        padding: 80px 0 60px;
    }
    
    .download-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .download-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .download-icon-large i {
        font-size: 2rem;
    }
    
    .download-content {
        margin: 0 1rem;
    }
    
    .download-card-header,
    .download-card-body {
        padding: 1.5rem;
    }
    
    .btn-download-large {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .version-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .installation-guide {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .license-info {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
}

/* Mobile Responsive for HowTo Pages */
@media (max-width: 768px) {
    .howto-hero {
        padding: 80px 0 60px;
    }
    
    .howto-header h1 {
        font-size: 2.2rem;
    }
    
    .howto-icon {
        width: 80px;
        height: 80px;
    }
    
    .howto-icon i {
        font-size: 2rem;
    }
    
    .howto-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .tutorial-list li a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .category-header {
        padding: 2rem 1.5rem;
    }
    
    .tutorial-item {
        padding: 1.25rem 1.5rem;
    }
    
    .tutorial-link:hover .tutorial-item {
        padding-left: 1.75rem;
    }
    
    .tutorial-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tutorial-header h1 {
        font-size: 2rem;
    }
    
    .tutorial-meta {
        gap: 1rem;
    }
    
    .tutorial-steps {
        max-width: 100%;
    }
    
    .tutorial-step {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .step-content h2 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .step-screenshot {
        padding: 1rem;
    }
    
    .tutorial-image {
        min-width: 280px;
    }
    
    .tutorial-completion {
        padding: 2rem 1.5rem;
    }
    
    .next-tutorials {
        grid-template-columns: 1fr;
    }
    
    .next-tutorial {
        padding: 1rem;
    }
} 