body { font-family: sans-serif; line-height: 1.6; margin: 0 auto; max-width: 800px; padding: 2em; padding-top: 6em; padding-bottom: 2em; }
header { padding: 0; border-bottom: 1px solid #ccc; position: fixed; top: 0; left: 0; right: 0; background-color: white; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1em 2em; max-width: 1200px; margin: 0 auto; }
.nav-logo a { font-size: 1.5em; font-weight: bold; color: #333; text-decoration: none; }
.nav-links { display: flex; gap: 2em; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #007bff; }
.nav-actions { display: flex; align-items: center; gap: 1em; }
footer { text-align: center; padding: 1em 0; border-top: 1px solid #ccc; background-color: #f8f9fa; position: relative; z-index: 1000; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-around; }
.footer-section { flex: 1; min-width: 150px; margin: 0.5em; }
.footer-section h3 { color: #333; margin-bottom: 0.5em; font-size: 1em; }
.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 0.25em; }
.footer-section ul li a { color: #007bff; text-decoration: none; font-size: 0.9em; }
.footer-section ul li a:hover { text-decoration: underline; }
.footer-bottom { margin-top: 1em; padding-top: 0.5em; border-top: 1px solid #ddd; position: fixed; bottom: 0; left: 0; right: 0; background-color: #f8f9fa; z-index: 1001; }
.footer-bottom p { margin: 0; color: #666; font-size: 0.9em; }
.footer-bottom a { color: #007bff; text-decoration: none; margin: 0 0.5em; font-size: 0.9em; }
.footer-bottom a:hover { text-decoration: underline; }
nav a { margin: 0 15px; text-decoration: none; color: #007bff; }
.nav-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.login-btn {
    background-color: #f8f9fa;
    color: #007bff;
    border: 1px solid #007bff;
}
.login-btn:hover {
    background-color: #007bff;
    color: white;
}
.signup-btn {
    background-color: #28a745;
    color: white;
    border: 1px solid #28a745;
}
.signup-btn:hover {
    background-color: #218838;
    color: white;
}
.free-trial-msg {
    background-color: #fff3cd;
    color: #856404;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    margin-left: 10px;
    border: 1px solid #ffeaa7;
}
.breadcrumb { padding: 0.75rem 1rem; margin-bottom: 1rem; list-style: none; background-color: #e9ecef; border-radius: 0.25rem; }
.breadcrumb-item { display: inline-block; }
.breadcrumb-item + .breadcrumb-item::before { content: "/"; padding: 0 0.5rem; color: #6c757d; }
.breadcrumb-item.active { color: #6c757d; }
.breadcrumb-item a { color: #007bff; text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }
main h1 { color: #333; }
.article-list li { margin-bottom: 0.5em; }
.contact-form { display: flex; flex-direction: column; }
.contact-form input, .contact-form textarea { margin-bottom: 1em; padding: 0.5em; font-size: 1em; }
.contact-form button { padding: 0.7em; background: #007bff; color: white; border: none; cursor: pointer; }
.message { padding: 1em; margin-bottom: 1em; border-radius: 4px; }
.message.success { background-color: #d4edda; color: #155724; }
.message.error { background-color: #f8d7da; color: #721c24; }
.form-control {
    display: inline-block;
    width: 60vw;
    max-width: 500px;
    font-size: 1.1em;
    padding: 0.5em 1em;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
    color: #495057;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    margin-right: 0.5em;
}
.btn {
    display: inline-block;
    height: 2.5em;
    width: 20vw;
    max-width: 180px;
    font-size: 1.1em;
    padding: 0.5em 1em;
    border: 1px solid #198754;
    border-radius: 0.25rem;
    background-color: #198754;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
}
.youtube-player {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 20px auto;
    cursor: pointer;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}
.youtube-player img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    pointer-events: none;
    z-index: 1;
}
.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}





.highlight-box {
    background-color: rgba(255, 0, 0, 0.2);
    padding: 20px;
    margin: 20px 0;
    border-radius: 50px;
}

/* Blog post styles */
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.blog-intro {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.blog-section {
    margin-bottom: 30px;
    padding: 20px 0;
}

.blog-section h2, .blog-section h3 {
    color: #333;
    margin-bottom: 15px;
}

.blog-conclusion {
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid #eee;
}

.cta-button {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #218838;
    text-decoration: none;
}

.learn-more-link {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9em;
}





/* Contact Page Styles */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em;
}

.contact-header {
    text-align: center;
    margin-bottom: 3em;
}

.contact-header h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.contact-header p {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 3em;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
}

.info-section {
    margin-bottom: 2em;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h3 {
    color: #333;
    margin-bottom: 1em;
    font-size: 1.3em;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5em;
    gap: 1em;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.icon-email, .icon-phone {
    width: 24px;
    height: 24px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8em;
    flex-shrink: 0;
}

.icon-email::before { content: "@"; }
.icon-phone::before { content: "📞"; }

.contact-item div {
    line-height: 1.4;
}

.contact-item a {
    color: #007bff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75em 1em;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.social-link:hover {
    background-color: #0056b3;
}

.social-link.telegram { background-color: #0088cc; }
.social-link.telegram:hover { background-color: #006699; }

.social-link.whatsapp { background-color: #25d366; }
.social-link.whatsapp:hover { background-color: #128c7e; }

.social-link.facebook { background-color: #1877f2; }
.social-link.facebook:hover { background-color: #166fe5; }

.contact-form-section {
    background-color: white;
    padding: 2em;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.contact-form-section h3 {
    color: #333;
    margin-bottom: 1.5em;
    font-size: 1.3em;
}

.contact-form .form-group {
    margin-bottom: 1.5em;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5em;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.submit-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 0.75em 2em;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #218838;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding: 1em;
        padding-top: 6em;
        padding-bottom: 2em;
    }
    .navbar {
        padding: 0.5em 1em;
        flex-wrap: wrap;
    }
    .nav-logo a {
        font-size: 1.2em;
    }
    .nav-links {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        gap: 1em;
        margin-top: 0.5em;
    }
    .nav-links a {
        font-size: 0.9em;
    }
    .nav-actions {
        gap: 0.5em;
    }
    .nav-btn {
        padding: 6px 10px;
        font-size: 0.8em;
    }
    .free-trial-msg {
        font-size: 0.7em;
        padding: 2px 4px;
        white-space: nowrap;
    }
    .form-control {
        width: 80vw;
    }
    .btn {
        width: 30vw;
    }
}
@media (max-width: 768px) {
    .contact-page {
        padding: 1em;
    }
    .contact-header h1 {
        font-size: 2em;
    }
    .contact-header p {
        font-size: 1em;
    }
    .contact-info {
        padding: 2em;
    }
}

@media (max-width: 600px) {
    .nav-links {
        gap: 0.5em;
    }
    .nav-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    .free-trial-msg {
        flex-basis: 100%;
        text-align: center;
        margin: 5px 0;
        order: 1;
    }
    .contact-info {
        padding: 1.5em;
    }
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5em;
    }
    .social-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}
