* {
    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);
}

.first-screen.hidden {
    transform: translateY(-100%);
}

.content-wrapper {
    display: flex;
    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-section {
    padding: 20px 5%;
    background: white;
}

/* Editor Start */
.editor-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0;
}

.text-center {
    text-align: center;
}

.margin-0-10 {
    margin-left: 10px;
    margin-right: 10px;
}

.padding-0-10 {
    padding: 0 10px !important;
}

.padding-20 {
    padding: 20px !important;
}

.line-h-45 {
    min-height: 45px !important;
}

.bg-transparent {
    background-color: transparent;
}

.box-card {
    border-radius: 10px;
    margin-bottom: 20px;
}

.el-card__body {
    padding: 10px;
}

.panel-hide {
    display: none;
}

.panel-stitcher {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.panel-preview {
    width: 100%;
    height: 100%;
    text-align: center;
}

.panel-preview img {
    width: 100%;
    height: auto;
}

.radio-group-container {
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
}

.el-radio-button__orig-radio:checked+.el-radio-button__inner {
    color: #FFF;
    background-color: #333333;
    border-color: #333333;
    -webkit-box-shadow: -1px 0 0 0 #333333;
    box-shadow: -1px 0 0 0 #333333;
}

.el-dropdown-menu__item:focus,
.el-dropdown-menu__item:not(.is-disabled):hover {
    color: #333333;
}

.ratio-box {
    display: inline-block;
    position: relative;
    background: transparent;
    border: 2px solid #333333;
    border-radius: 4px;
}

.ratio-box::after {
    content: attr(data-ratio);
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
    color: #333333;
}

.ratio-box.active {
    border-color: #333333;
}

.ratio-1x1 {
    width: 50px;
    padding-top: 100%;
}

/* 1:1 */
.ratio-2x3 {
    width: 33.3px;
    padding-top: 150%;
}

/* 2:3 */
.ratio-3x4 {
    width: 37.5px;
    padding-top: 133.3%;
}

/* 3:4 */
.ratio-4x5 {
    width: 40px;
    padding-top: 125%;
}

/* 4:5 */
.ratio-4x3 {
    width: 66.5px;
    padding-top: 75%;
}

/* 4:3 */
.ratio-16x9 {
    width: 89px;
    padding-top: 56.25%;
}

/* 16:9 */
.ratio-5x4 {
    width: 62.5px;
    padding-top: 80%;
}

/* 5:4 */
.ratio-box-layout {
    width: 50px;
    height: 50px;
}

.is-active .el-radio-button__inner .ratio-box {
    border: 2px solid #f5f5f5;
}

.is-active .el-radio-button__inner .ratio-box::after {
    color: #f5f5f5;
}

.vue-grid-layout {
    background: transparent;
}

.vue-grid-item:not(.vue-grid-placeholder) {
    background: #f5f5f5;
    border: 2px solid #333333;
    border-radius: 0px;
    overflow: hidden;
}

.vue-grid-item .resizing {
    opacity: 0.9;
}

.vue-grid-item .static {
    background: #f5f5f5;
}

.vue-grid-item .text {
    font-size: 24px;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 100%;
}

.vue-grid-item .no-drag {
    height: 100%;
    width: 100%;
}

.vue-grid-item .minMax {
    font-size: 12px;
}

.vue-grid-item .add {
    cursor: pointer;
}

.vue-draggable-handle {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10'><circle cx='5' cy='5' r='5' fill='#999999'/></svg>") no-repeat;
    background-position: bottom right;
    padding: 0 8px 8px 0;
    background-repeat: no-repeat;
    background-origin: content-box;
    box-sizing: border-box;
    cursor: pointer;
}

.image-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
}

.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.image-container img {
    z-index: 1001;
}

.image-remove {
    position: absolute;
    z-index: 1002;
    top: 5px;
    right: 5px;
    height: 30px;
    width: 30px;
    font-size: 24px;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    cursor: pointer;
    font-size: 18px;
    padding: 2px;
}

.image-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    background-color: #f5f5f5;
}

.image-plus .el-icon-plus {
    color: #333333;
}

.image-fluid {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    cursor: move;
    transform-origin: top left;
    object-fit: cover;
}

@media screen and (min-width: 220px) and (max-width: 767px) {
    .el-dialog {
        width: 96% !important;
    }
}

/* Editor End */

.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(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.feature-card {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.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-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.feature-description {
    color: #666;
    line-height: 1.7;
}

/* 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: #f5f5f5;
    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;
}

/* Privacy Section */
.privacy {
    text-align: center;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #EBEEF5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.privacy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.privacy-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.privacy-content p a {
    color: #333333;
    text-decoration: underline;
}

.highlight {
    background: #333333;
    padding: 20px;
    border-radius: 15px;
    margin: 0 0 30px 0;
    color: white;
}

/* 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: #666;
    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: center;
        text-align: center;
    }

    .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;
    }
}