.elementor-22608 .elementor-element.elementor-element-2f27b7e{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-22608 .elementor-element.elementor-element-45e8aa9{--display:flex;border-style:solid;--border-style:solid;border-width:1px 1px 1px 1px;--border-top-width:1px;--border-right-width:1px;--border-bottom-width:1px;--border-left-width:1px;border-color:#333333;--border-color:#333333;--border-radius:0px 0px 0px 0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:18px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-22608 .elementor-element.elementor-element-2ed7d88{margin:19px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}@media(min-width:768px){.elementor-22608 .elementor-element.elementor-element-2f27b7e{--width:100%;}.elementor-22608 .elementor-element.elementor-element-45e8aa9{--width:80%;}}/* Start custom CSS for html, class: .elementor-element-2ed7d88 */body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #212121;
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.site-title {
    font-size: 32px;
    margin: 0;
    color: #4db5da;
}

.tagline {
    text-align: center;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #cccccc;
}

/* Hero section */
.hero {
    background-color: #252730;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #333;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 181, 218, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #4db5da;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ffffff;
}

.hero-buttons {
    margin-bottom: 0;
}

/* User Guide Section */
.user-guide-section {
    padding: 30px 0;
    background-color: #212121;
    text-align: center;
    border-bottom: 1px solid #333;
}

.user-guide-link {
    display: inline-block;
    color: #4db5da;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 25px;
    border: 2px solid #4db5da;
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.user-guide-link:hover {
    background-color: #4db5da;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(77, 181, 218, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: #4db5da;
    color: black;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.cta-buttonadd {
    display: inline-block;
    background-color: #4db5da;
    color: black;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px 0px 0px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.cta-buttonbn {
    display: inline-block;
    background-color: #4db5da;
    color: black;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0px 25px 25px 0px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.cta-buttonadd:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: black;
}

.cta-buttonbn:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: black;
}

.cta-button:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: black;
}

/* Features section */
.features {
    padding: 60px 0;
    background-color: #212121;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #4db5da;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #252730;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #4db5da;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #4db5da;
}

.feature-description {
    color: #cccccc;
}

/* How it works section */
.how-it-works {
    padding: 60px 0;
    background-color: #252730;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    background-color: #4db5da;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 20px;
    font-size: 20px;
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4db5da;
}

.step-description {
    color: #cccccc;
}

/* Screenshots section */
.screenshots {
    padding: 60px 0;
    background-color: #212121;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.screenshot-card {
    background-color: #252730;
    border-radius: 25px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.screenshot-img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

.screenshot-title {
    font-size: 18px;
    color: #4db5da;
    margin-bottom: 10px;
}

.screenshot-description {
    color: #cccccc;
    font-size: 14px;
}

/* Pricing section */
.pricing {
    padding: 60px 0;
    background-color: #252730;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background-color: #212121;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.popular {
    border: 2px solid #4db5da;
    transform: scale(1.05);
    position: relative;
}

.price-card.popular::before {
    content: "Most Popular";
    background-color: #4db5da;
    color: black;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.price-title {
    font-size: 24px;
    color: #4db5da;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 42px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.price-period {
    font-size: 16px;
    color: #999;
    margin-bottom: 20px;
}

.price-savings {
    background-color: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: #cccccc;
}

.price-features li::before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

/* FAQ section */
.faq {
    padding: 60px 0;
    background-color: #212121;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #252730;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    color: #4db5da;
}

.faq-question.active::after {
    content: "-";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #cccccc;
}

.faq-answer.show {
    padding: 15px 20px;
    max-height: 500px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 40px 0;
    color: #999;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: #4db5da;
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
    
    .features-grid,
    .screenshots-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .site-title {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .cta-buttonadd,
    .cta-buttonbn {
        display: block;
        margin: 5px auto;
        border-radius: 25px;
    }
    
    .pricing .user-guide-link {
        margin-bottom: 20px;
    }
    
    .feature-card,
    .screenshot-card,
    .price-card {
        margin-bottom: 20px;
    }
    
    .step-number {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .features,
    .how-it-works,
    .screenshots,
    .pricing,
    .faq {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .feature-card,
    .screenshot-card,
    .price-card {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .step {
        margin-bottom: 30px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.animate {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { 
    animation-delay: 0.2s; 
}

.delay-2 { 
    animation-delay: 0.4s; 
}

.delay-3 { 
    animation-delay: 0.6s; 
}

.delay-4 { 
    animation-delay: 0.8s; 
}

.delay-5 { 
    animation-delay: 1.0s; 
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4db5da;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s, background-color 0.3s, color 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-weight: bold;
    font-size: 18px;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background-color: white;
    color: #4db5da;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.cta-button:focus,
.cta-buttonadd:focus,
.cta-buttonbn:focus,
.back-to-top:focus {
    outline: 2px solid #4db5da;
    outline-offset: 2px;
}

.faq-question:focus {
    outline: 2px solid #4db5da;
    outline-offset: -2px;
}

/* Print styles */
@media print {
    .back-to-top {
        display: none;
    }
    
    .hero::before {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .section-title,
    .feature-title,
    .step-title,
    .screenshot-title,
    .price-title,
    .site-title {
        color: black;
    }
}/* End custom CSS */