* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    overflow-x: hidden;
}

.bg-primary {
    background-color: #333333 !important;
    color: white !important;
}

.el-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.el-header {
    background-color: #333333;
    color: white;
    height: 60px !important;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1009;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 22px;
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 10px;
    display: inline-block;
    width: 45px;
    height: 45px;
}

.nav-links {
    display: flex;
    margin-left: auto;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.el-main {
    padding: 0 !important;
    flex: 1;
}

.first-screen {
    background-color: #333333;
    color: white;
    min-height: calc(100vh - 50px);
    display: flex;
    padding: 0 5%;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.flex-dir-responsive {
    flex-direction: row;
}
@media (max-width: 992px) {
    .flex-dir-responsive {
        flex-direction: column;
    }
}

.title-wrapper, .content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.content-wrapper {
    flex-direction: row;
}

.puzzle-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.image-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sub-heading {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    color: #e0e0e0;
}

.start-btn {
    background: white !important;
    color: #333 !important;
    border: none !important;
    padding: 15px 35px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: all 0.3s !important;
    width: fit-content;
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.notion-grid {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

/* Content Start */
.content-section {
    padding: 20px 5%;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.section-title p {
    color: var(--gray);
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }
}

.content-section:last-of-type .features {
    margin-bottom: 20px;
}

.feature-card {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    cursor: pointer;
    text-decoration: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #333;
}

.feature-icon img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.feature-description {
    color: #333;
    line-height: 1.5;
    text-align: left;
    margin: 10px 0;
}

/* How To Section */
.how-to {
    background: #333333;
    color: white;
    position: relative;
    overflow: hidden;
}

.how-to .section-title h2,
.how-to .section-title p {
    color: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    width: auto;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #d5d5d5;
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 100px auto 0;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    color: #333;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    color: #333;
    line-height: 1.7;
    padding-right: 30px;
}

.el-footer {
    background-color: #333333;
    color: white;
    padding: 30px 5%;
    text-align: center;
    height: auto !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.footer-logo img {
    max-width: 30px;
    height: auto;
    margin-right: 5px;
}

.footer-desc {
    color: #ccc;
    max-width: 300px;
    text-align: left;
}

.footer-links {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    align-items: start;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: left;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}

.copyright {
    margin-top: 40px;
    width: 100%;
    color: #999;
    font-size: 14px;
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }

    .text-content {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .main-heading {
        font-size: 2.8rem;
    }

    .sub-heading {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .main-heading {
        font-size: 2.3rem;
    }

    .section-title h2,
    .faq-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        margin-top: 30px;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-desc {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }

    .sub-heading {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .start-btn {
        width: 100%;
    }

    .section-title h2,
    .faq-title {
        font-size: 1.8rem;
    }
}