:root {
    --primary-color: #fa8c16;
    --primary-hover: #e67d0e;
    --text-color: #2c3e50;
    --light-gray: #f5f7fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header2 Start */
/* Header Styles - CSS Only (No JavaScript) */
.header3-simple {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* Top bar */
.header3-top {
    background: #f5f5f5;
    color: #666;
    font-size: 0.85rem;
    border-bottom: 1px solid #e5e5e5;
}

    .header3-top .header3-top-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
    }

    .header3-top .header3-promo {
        opacity: .95;
    }

    .header3-top .header3-utils {
        display: flex;
        gap: 16px;
    }

        .header3-top .header3-utils a {
            color: #666;
            text-decoration: none;
            opacity: 1;
            transition: opacity .2s ease;
        }

            .header3-top .header3-utils a:hover {
                color: #ff7200;
            }

    .header3-top .signup {
        font-weight: 600;
    }

/* Main navbar */
.header3-navbar {
    background: #fff;
    padding: 14px 0;
}

.header3-simple .navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header3-simple .logo {
    height: 40px;
    margin-right: 10px;
}

.header3-simple .navbar-toggler {
    border: none;
    background: transparent;
    font-size: 1.4rem;
    padding: 6px 10px;
}

.header3-simple .navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Main menu */
.header3-main-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
}

.header3-menu-item {
    position: relative;
}

    .header3-menu-item > a {
        display: block;
        padding: 12px 14px;
        color: #1f2d3d;
        text-decoration: none;
        font-weight: 500;
        transition: color .2s ease;
        position: relative;
    }

        .header3-menu-item > a:hover {
            color: #ff7200;
        }

        .header3-menu-item > a::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 6px;
            height: 2px;
            background: #ff7200;
            opacity: .9;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .18s ease;
        }

        .header3-menu-item > a:hover::after {
            transform: scaleX(1);
        }

    .header3-menu-item.active > a {
        color: #0b64e1;
    }

        .header3-menu-item.active > a::after {
            transform: scaleX(1);
        }

/* Mega dropdown - CSS only (desktop only) */
@media (min-width: 993px) {
    .header3-mega-menu {
        position: absolute;
        left: 0;
        top: 100%;
        background: #ffffff;
        display: none;
        box-shadow: 0 8px 24px rgba(0,0,0,.12);
        border-top: 1px solid #e8e8e8;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        min-width: 900px;
        transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    }

    .header3-has-dropdown:hover .header3-mega-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        transition: opacity .18s ease, transform .18s ease, visibility 0s;
    }
}

.header3-mega-menu-content {
    display: flex;
    max-width: 1200px;
    margin: 0;
    padding: 20px 24px;
}

.header3-mega-menu-intro {
    width: 300px;
    padding-right: 24px;
    border-right: 1px solid #e8e8e8;
    margin-right: 24px;
}

    .header3-mega-menu-intro h2 {
        color: #333333;
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0 0 6px;
    }

    .header3-mega-menu-intro p {
        color: #666666;
        margin: 0 0 16px;
        font-size: .95rem;
    }

.header3-promo-card {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #e8e8e8;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.header3-mega-menu-column {
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #e8e8e8;
}

    .header3-mega-menu-column:last-child {
        border-right: none;
    }

    .header3-mega-menu-column h3 {
        color: #333333;
        font-size: .95rem;
        letter-spacing: .02em;
        font-weight: 600;
        margin: 0 0 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid #e8e8e8;
    }

    .header3-mega-menu-column ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .header3-mega-menu-column ul li {
            margin: 0;
        }

            .header3-mega-menu-column ul li a {
                color: #666666;
                text-decoration: none;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 10px 8px;
                border-radius: 4px;
                transition: background-color .16s ease, color .16s ease;
            }

                .header3-mega-menu-column ul li a:hover {
                    color: #1890ff;
                    background: #f0f8ff;
                }

/* Actions */
.header3-actions {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.header3-simple .cart-icon {
    position: relative;
    color: #1f2d3d;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color .2s ease;
}

    .header3-simple .cart-icon:hover {
        color: #0b64e1;
    }

.header3-simple .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #0b64e1;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: .7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide mobile chevron on desktop */
.mobile-chevron {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .mobile-chevron {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .header3-has-dropdown.active .mobile-chevron {
        transform: rotate(180deg);
    }

    .header3-top .header3-top-content {
        flex-wrap: wrap;
        gap: 8px;
    }

    .header3-top .header3-promo {
        width: 100%;
        text-align: center;
    }

    .header3-top .header3-utils {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .header3-navbar {
        position: relative;
    }

        .header3-navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    .header3-simple .navbar-toggler {
        display: block;
        border: none;
        background: transparent;
        font-size: 1.4rem;
        color: #1f2d3d;
        cursor: pointer;
        padding: 8px 12px;
    }

    .header3-navbar .navbar-collapse {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,.1);
        padding: 16px;
        flex-direction: column;
        z-index: 999;
    }

        .header3-navbar .navbar-collapse.show {
            display: flex !important;
        }

    .header3-main-menu {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 0;
    }

    .header3-menu-item {
        width: 100%;
        border-bottom: 1px solid #f0f2f5;
    }

        .header3-menu-item:last-child {
            border-bottom: none;
        }

        .header3-menu-item > a {
            padding: 12px 0;
            border-bottom: none;
        }

            .header3-menu-item > a::after {
                display: none;
            }

    /* Mobile mega menu */
    .header3-has-dropdown:hover .header3-mega-menu {
        display: none !important;
    }

    .header3-mega-menu {
        position: static;
        display: none !important;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        margin-top: 8px;
        min-width: auto;
        border-top: 1px solid #e8e8e8;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .header3-has-dropdown.active .header3-mega-menu {
        display: block !important;
    }

    .header3-mega-menu-content {
        flex-direction: column;
        padding: 16px;
    }

    .header3-mega-menu-intro {
        width: 100%;
        padding: 0 0 12px;
        margin: 0 0 12px;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .header3-promo-card {
        height: 100px;
    }

    .header3-mega-menu-column {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding: 12px 0;
    }

        .header3-mega-menu-column:last-child {
            border-bottom: none;
        }

        .header3-mega-menu-column h3 {
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .header3-mega-menu-column ul li a {
            padding: 8px 0;
            font-size: 0.9rem;
        }

    .header3-actions {
        margin-top: 12px;
        width: 100%;
        justify-content: flex-start;
        padding-top: 12px;
        border-top: 1px solid #e8e8e8;
    }
}

@media (min-width: 993px) {
    .navbar-toggler {
        display: none !important;
    }
}
/* Header2 End */

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff 0%, var(--light-gray) 100%);
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    /*color: var(--text-color);*/
    color:#fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}

.domain-search {
    margin-bottom: 20px;
}

    .domain-search .el-button {
        background-color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
    }

.domain-prices {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.domain-price-item {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    color: var(--text-color);
}

.feature-card {
    text-align: center;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-card i {
        font-size: 40px;
        /*color: var(--primary-color);*/
        /*margin-bottom: 20px;*/
    }

    .feature-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: var(--text-color);
    }

    .feature-card p {
        color: #666;
        margin: 0;
    }

/* Custom shield icon styles */
.custom-shield-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 30px;
    /*margin-top: 60px;*/
}

.footer-column {
    margin-bottom: 30px;
}

.footer h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #b8c6d6;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 14px;
    }

        .footer-links a:hover {
            color: var(--primary-color);
        }

.contact-info {
    margin-bottom: 20px;
}

    .contact-info p {
        margin-bottom: 10px;
        color: #b8c6d6;
        font-size: 14px;
    }

    .contact-info i {
        margin-right: 10px;
        color: var(--primary-color);
    }

.social-links {
    margin-bottom: 25px;
}

.social-link {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s;
}

    .social-link:hover {
        background: var(--primary-color);
        color: #fff;
        transform: translateY(-3px);
    }

.payment-methods {
    margin-top: 20px;
}

    .payment-methods h5 {
        font-size: 16px;
        color: #fff;
        margin-bottom: 15px;
    }

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

    .payment-icons i {
        color: #b8c6d6;
        transition: color 0.3s;
    }

        .payment-icons i:hover {
            color: var(--primary-color);
        }

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #b8c6d6;
    font-size: 14px;
    margin: 0;
}

.language-selector {
    text-align: right;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .domain-prices {
        flex-direction: column;
        gap: 10px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .language-selector {
        text-align: left;
        margin-top: 20px;
    }

    .payment-methods {
        margin-top: 15px;
    }
}

@media (max-width: 991px) {
    .navbar-brand h1 {
        padding: 10px 0;
    }

    .el-menu-item,
    .el-menu--horizontal > .el-menu-item,
    .el-menu--horizontal > .el-submenu .el-submenu__title {
        height: 60px !important;
        line-height: 60px !important;
    }

    .mega-menu {
        position: static;
        box-shadow: none;
        padding: 15px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr !important;
    }

    .mega-menu-featured {
        display: none;
    }
}

/* Suffixs Section */
.suffixs {
    padding: 80px 0;
    background: #fff;
}

.domain-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .domain-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

.domain-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.domain-description {
    color: #666;
    font-size: 16px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.domain-price {
    margin-bottom: 20px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 14px;
}

.discount-badge {
    background: #f0f2ff;
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.current-price {
    display: flex;
    align-items: baseline;
}

    .current-price .currency {
        font-size: 16px;
        color: var(--text-color);
        font-weight: 500;
    }

    .current-price .amount {
        font-size: 32px;
        font-weight: 700;
        color: var(--text-color);
        margin: 0 4px;
    }

    .current-price .period {
        color: #666;
        font-size: 14px;
    }

.register-btn {
    width: 100%;
    height: 44px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
}

/* Responsive adjustments for domain cards */
@media (max-width: 768px) {
    .domain-card {
        padding: 20px;
    }

    .domain-logo {
        font-size: 28px;
    }

    .domain-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .current-price .amount {
        font-size: 28px;
    }
}

/* Hero1 Section */
.hero1 {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    padding: 60px 0;
    margin-top: 70px;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.search-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Domain Carousel */
.domain-carousel {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
    position: relative;
}

.domain-price-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.domain-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

    .domain-price-item .domain {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-color);
    }

    .domain-price-item .price {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .domain-price-item .original {
        font-size: 12px;
        color: #999;
        text-decoration: line-through;
    }

    .domain-price-item .current {
        font-size: 16px;
        font-weight: 600;
        color: var(--primary-color);
    }

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    pointer-events: none;
}

.control-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s;
}

    .control-btn:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .domain-carousel {
        padding: 12px;
        margin-top: 16px;
    }

    .domain-price-list {
        padding: 0 20px;
        overflow-x: auto;
        gap: 20px;
    }

    .domain-price-item {
        flex-shrink: 0;
    }

    .carousel-controls {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-title {
        font-size: 32px;
    }

    .search-description {
        font-size: 16px;
    }
}

.search-container {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    position: relative;
}

.search-tabs {
    display: flex;
    gap: 12px;
    /*margin-bottom: 20px;*/
    padding: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    width: fit-content;
}

.tab-btn {
    height: 36px;
    padding: 0 24px;
    font-size: 14px;
    border-radius: 20px;
    border: none;
    background: transparent;
    color: #666;
    transition: all 0.3s;
}

    .tab-btn:hover {
        color: var(--primary-color);
    }

    .tab-btn.active {
        background: var(--primary-color);
        color: #fff;
    }

        .tab-btn.active:hover {
            background: var(--primary-hover);
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-tabs {
        margin-left: auto;
        margin-right: auto;
    }

    .tab-btn {
        padding: 0 16px;
        font-size: 13px;
    }
}

.search-tools {
    position: absolute;
    top: 24px;
    right: 24px;
}

.tool-links {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.tool-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
}

    .tool-link:hover {
        color: var(--primary-color);
        border-color: var(--primary-color);
        box-shadow: 0 2px 8px rgba(250, 140, 22, 0.1);
        transform: translateY(-1px);
    }

    .tool-link i {
        font-size: 16px;
    }

        .tool-link i.el-icon-arrow-right {
            margin-left: 4px;
            font-size: 12px;
            transition: transform 0.3s;
        }

    .tool-link:hover i.el-icon-arrow-right {
        transform: translateX(3px);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-tools {
        position: static;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .tool-links {
        justify-content: center;
    }
}

.search-box {
    position: relative;
    margin-bottom: 24px;
}

.domain-search-input {
    width: 100%;
}

    .domain-search-input .el-input__inner {
        height: 56px;
        font-size: 18px;
        border-radius: 12px;
        padding-right: 120px;
    }

    .domain-search-input .el-input-group__append {
        background: var(--primary-color);
        border-color: var(--primary-color);
        border-radius: 0 12px 12px 0;
    }

        .domain-search-input .el-input-group__append .el-button {
            padding: 0 30px;
            height: 54px;
        }

    .domain-search-input .el-button--primary {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

.transfer-box {
    margin-bottom: 24px;
}

.transfer-inputs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

    .transfer-inputs .domain-input {
        flex: 2;
    }

    .transfer-inputs .auth-input {
        flex: 1;
    }

    .transfer-inputs .el-input__inner {
        height: 56px;
        font-size: 16px;
        border-radius: 12px;
        background: #fff;
    }

.transfer-btn {
    height: 56px;
    width: 160px;
    font-size: 16px;
    border-radius: 12px;
    background: var(--primary-color);
    border-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .transfer-btn:hover {
        background: var(--primary-hover);
        border-color: var(--primary-hover);
    }

    .transfer-btn i {
        font-size: 18px;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .transfer-inputs {
        flex-direction: column;
        gap: 12px;
    }

    .transfer-btn {
        width: 100%;
        height: 48px;
    }

    .transfer-inputs .el-input__inner {
        height: 48px;
        font-size: 14px;
    }
}

.faqs {
    padding: 80px 0;
    background: #f8f9fa;
}

    .faqs .section-title {
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

.el-collapse {
    border: none;
    background: transparent;
    max-width: 800px;
    margin: 0 auto;
}

.el-collapse-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #eaeaea;
}

    .el-collapse-item:last-child {
        margin-bottom: 0;
    }

.el-collapse-item__header {
    padding: 30px 40px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    background: #fff;
    border: none;
    border-radius: 12px;
    line-height: 1.4;
    height: auto !important;
}

.el-collapse-item__content {
    padding: 0 40px 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.faq-question {
    color: var(--text-color);
    display: block;
    line-height: 1.4;
}

.faq-answer {
    color: #666;
}

    .faq-answer p {
        margin-bottom: 16px;
    }

    .faq-answer ul,
    .faq-answer ol {
        padding-left: 20px;
        margin-bottom: 16px;
    }

    .faq-answer li {
        margin-bottom: 8px;
    }

        .faq-answer li:last-child {
            margin-bottom: 0;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .faqs {
        padding: 60px 0;
    }

    .el-collapse-item__header {
        padding: 20px 24px;
        font-size: 16px;
    }

    .el-collapse-item__content {
        padding: 0 24px 20px;
        font-size: 14px;
    }
}

.promo-sections {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.promo-block {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.privacy-block {
    background: linear-gradient(135deg, #2b1a4d 0%, #1a0f2e 100%);
    color: #fff;
}

.transfer-block {
    background: #fff;
}

.free-domain-block {
    background: linear-gradient(135deg, #1a0f2e 0%, #2b1a4d 100%);
    color: #fff;
}

.promo-content {
    padding: 40px;
}

    .promo-content h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .promo-content p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 16px;
        opacity: 0.9;
    }

.feature-list {
    margin: 32px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 18px;
}

    .feature-item i {
        color: var(--primary-color);
        font-size: 24px;
    }

.promo-image {
    position: relative;
    padding: 20px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.demo-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    width: 80%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .privacy-status .label {
        font-size: 16px;
        color: #fff;
    }

    .privacy-status .status {
        background: rgba(39, 174, 96, 0.2);
        color: #27AE60;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
    }

.privacy-info .info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-primary {
    height: 48px;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 24px;
    background: var(--primary-color);
    border-color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background: var(--primary-hover);
        border-color: var(--primary-hover);
        transform: translateY(-2px);
    }

/* Responsive adjustments */
@media (max-width: 991px) {
    .promo-block {
        padding: 60px 0;
    }

    .promo-content {
        padding: 20px;
        text-align: center;
    }

        .promo-content h2 {
            font-size: 32px;
        }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .demo-card {
        position: relative;
        transform: none;
        left: 0;
        top: 0;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .promo-content h2 {
        font-size: 28px;
    }

    .promo-content p {
        font-size: 16px;
    }

    .feature-item {
        font-size: 16px;
    }
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    color: #fff;
}

.careers-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.careers-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.view-positions-btn {
    height: 52px;
    padding: 0 32px;
    font-size: 18px;
    background: #fff;
    color: var(--primary-color);
    border: none;
}

    .view-positions-btn:hover {
        background: #f0f0f0;
        transform: translateY(-2px);
    }

.careers-hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.why-work-with-us {
    padding: 80px 0;
    background: #fff;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    height: 100%;
    transition: transform 0.3s;
}

    .benefit-card:hover {
        transform: translateY(-5px);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

    .benefit-icon i {
        font-size: 36px;
        color: #fff;
    }

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.open-positions {
    padding: 80px 0;
    background: #f8f9fa;
}

.positions-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-select {
    width: 300px;
}

.positions-list {
    max-width: 800px;
    margin: 0 auto;
}

.position-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .position-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

    .position-header h3 {
        font-size: 20px;
        margin: 0;
        color: var(--text-color);
    }

.department-tag {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.position-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.position-details {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

    .position-details span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 14px;
    }

.apply-btn {
    width: 100%;
}

.company-culture {
    padding: 80px 0;
    background: #fff;
}

.culture-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.culture-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.culture-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for careers page */
@media (max-width: 768px) {
    .careers-hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .careers-title {
        font-size: 36px;
    }

    .careers-subtitle {
        font-size: 18px;
    }

    .filter-select {
        width: 100%;
        max-width: 300px;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .position-details {
        flex-direction: column;
        gap: 12px;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-color);
}

.blog-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.blog-search {
    max-width: 500px;
    margin: 0 auto;
}

.blog-search-input {
    width: 100%;
}

.blog-categories {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}

.featured-article {
    padding: 60px 0;
    background: #f8f9fa;
}

.featured-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 300px;
}

    .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

    .article-meta .category {
        background: var(--primary-color);
        color: #fff;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 500;
    }

    .article-meta .date {
        color: #666;
        font-size: 14px;
    }

.featured-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
    line-height: 1.3;
}

.featured-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.read-more-btn {
    align-self: flex-start;
    height: 44px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #fa8c16;
    background-color: #fa8c16;
    color: white;
}

    .read-more-btn:hover {
        background-color: #e67d0e;
        border-color: #e67d0e;
        color: white;
        text-decoration: none;
    }

    .read-more-btn i {
        margin-left: 8px;
    }

.blog-articles {
    padding: 80px 0;
    background: #fff;
}

.articles-grid {
    margin-bottom: 40px;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

    .article-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

.article-image {
    position: relative;
    height: 200px;
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.article-content {
    padding: 24px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

    .article-meta .date,
    .article-meta .read-time {
        color: #666;
        font-size: 14px;
    }

.article-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.4;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-footer {
    display: flex;
    justify-content: flex-end;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 500;
}

    .read-more-link:hover {
        color: var(--primary-hover);
    }

.pagination-wrapper {
    text-align: center;
    margin-top: 40px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.popular-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-article {
    display: flex;
    gap: 12px;
    align-items: center;
}

.popular-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.popular-content h5 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-color);
    line-height: 1.4;
}

.popular-date {
    font-size: 12px;
    color: #666;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s;
}

    .category-link:hover {
        color: var(--primary-color);
    }

.category-count {
    color: #666;
    font-size: 14px;
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
}

    .newsletter-widget .widget-title {
        color: #fff;
    }

    .newsletter-widget p {
        margin-bottom: 20px;
        opacity: 0.9;
    }

.newsletter-input {
    margin-bottom: 16px;
}

.newsletter-btn {
    width: 100%;
    background: #fff;
    color: var(--primary-color);
    border: none;
}

    .newsletter-btn:hover {
        background: #f0f0f0;
    }

/* Responsive adjustments for blog page */
@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-subtitle {
        font-size: 18px;
    }

    .categories-tabs {
        gap: 12px;
    }

    .category-tab {
        padding: 6px 16px;
        font-size: 13px;
    }

    .featured-content {
        padding: 24px;
    }

    .featured-title {
        font-size: 24px;
    }

    .article-content {
        padding: 20px;
    }

    .article-title {
        font-size: 18px;
    }

    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-content {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: #f8f9fa;
    min-height: calc(100vh - 70px);
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
}

    .page-header h1 {
        font-size: 48px;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 16px;
    }

.last-updated {
    color: #666;
    font-size: 16px;
    font-style: italic;
}

.table-of-contents {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

    .table-of-contents h2 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--text-color);
    }

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

    .toc-list li {
        margin-bottom: 8px;
    }

    .toc-list a {
        display: block;
        padding: 12px 16px;
        background: #f8f9fa;
        color: var(--text-color);
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s;
        border-left: 3px solid transparent;
    }

        .toc-list a:hover {
            background: var(--primary-color);
            color: #fff;
            border-left-color: var(--primary-hover);
            transform: translateX(4px);
        }

.policy-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

    .policy-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .policy-section h2 {
        font-size: 28px;
        font-weight: 600;
        color: var(--text-color);
        margin-bottom: 20px;
        padding-top: 20px;
    }

    .policy-section h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--text-color);
        margin: 24px 0 16px;
    }

    .policy-section p {
        color: #666;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .policy-section ul {
        margin: 16px 0;
        padding-left: 24px;
    }

    .policy-section li {
        color: #666;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .policy-section strong {
        color: var(--text-color);
        font-weight: 600;
    }

    .policy-section a {
        color: var(--primary-color);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s;
    }

        .policy-section a:hover {
            border-bottom-color: var(--primary-color);
        }

.contact-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

    .contact-info p {
        margin-bottom: 8px;
    }

        .contact-info p:last-child {
            margin-bottom: 0;
        }

.back-to-top {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

    .back-to-top .el-button {
        height: 44px;
        padding: 0 24px;
        font-size: 16px;
    }

/* Responsive adjustments for privacy policy page */
@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .table-of-contents {
        padding: 20px;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }

    .policy-content {
        padding: 24px;
    }

    .policy-section h2 {
        font-size: 24px;
    }

    .policy-section h3 {
        font-size: 18px;
    }
}

/* Cookie Policy Page Styles */
.cookie-policy-content {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: #f8f9fa;
    min-height: calc(100vh - 70px);
}

/* Responsive adjustments for cookie policy page */
@media (max-width: 768px) {
    .cookie-policy-content {
        padding: 100px 0 60px;
    }
}

/* Terms of Service Page Styles */
.terms-of-service-content {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: #f8f9fa;
    min-height: calc(100vh - 70px);
}

/* Responsive adjustments for terms of service page */
@media (max-width: 768px) {
    .terms-of-service-content {
        padding: 100px 0 60px;
    }
}


li.el-menu-item>a,div.el-submenu__title a {
    color: unset;
    text-decoration: none;
}
.custom-breadcrumb {
    background: transparent;
    padding: 20px 0;
    margin-bottom: 0;
}

@media(min-width: 768px) {
    #app {
        padding-top: 105px;
    }

    #main-placeholder > *:first-child {
        margin-top: unset;
    }
}
