/* Services Section - Light & Neon */
.services-section {
    background: linear-gradient(to top, #ffffff, #ffffff00, #ffffff);
    padding-bottom: 80px;
    color: #1F2937; /* Dark text */
        padding-top: 30px;
}

.services-header {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
}

.services-header::before,
.services-header::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.services-header::before {
    left: 0;
background: linear-gradient(to right, #ffffff, transparent);
}

.services-header::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.services-header ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: marquee 20s linear infinite;
}

.services-header ul:hover {
    animation-play-state: paused;
}

.services-header ul li {
    padding: 0 1.5rem;
    white-space: nowrap;
}

.services-header li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-header .ri-check-line {
    color: #2563EB; /* Neon Blue */
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 30px; /* Increased row gap for better separation */
    text-align: center;
}

.service-item {
    /* Removed box styles */
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
border-radius: 20px;
    border: 1px solid #2563eb;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 50%, rgb(37 99 235 / 31%) 100%), rgb(255 255 255 / 5%);
    width: 60px;
    height: 60px;
    display: flex
;
    align-items: center;
    justify-content: center;
    --icon-size: 32px;
    color: #2563eb;
    margin: 0 auto 10px;
}

.service-icon i {
    font-size: var(--icon-size);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.service-item p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
}

/* == Comparison Section == */
.comparison-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.comparison-card {
    background: rgba(30, 33, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.comparison-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #E0E0E0;
    padding: 15px 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 12px;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list li i {
    font-size: 24px;
}

.comparison-card:not(.others) .features-list li i {
    color: #41E88D;
}

.comparison-card.others .features-list li {
    color: #a0a0a0;
}

.comparison-card.others .features-list li i {
    color: #F44336;
}

/* == New Comparison Section == */
.comparison-section-new {
    padding: 50px 0;
    background-color: #ffffff;
}

.section-header.text-center {
    margin-bottom: 60px;
}

.section-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ECFDF5;
    color: #10B981;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-badge-new i {
    font-size: 20px;
}

.section-title-new {
    font-size: 42px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.section-subtitle-new {
    font-size: 18px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    background-color: #ffffff;
    /* Ring pattern AND corner glows */
    background-image:
        /* Corner glows */
        radial-gradient(circle 300px at -20px -20px, rgba(37, 99, 235, 0.08), transparent),
        radial-gradient(circle 300px at calc(100% + 20px) -20px, rgba(37, 99, 235, 0.08), transparent),
        radial-gradient(circle 300px at -20px calc(100% + 20px), rgba(37, 99, 235, 0.08), transparent),
        radial-gradient(circle 300px at calc(100% + 20px) calc(100% + 20px), rgba(37, 99, 235, 0.08), transparent),
        /* Ring pattern */
        radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1.5px);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
    background-size: auto, auto, auto, auto, 18px 18px; /* Let glows have their natural size, repeat pattern */
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    position: relative; /* For pseudo-element positioning */
    overflow: hidden; /* Hide the parts of the glow that are outside the border-radius */
        border: 1px solid var(--border-color);
}

.comparison-table-wrapper::before {
    content: '';
    position: absolute;
    top: 24px; /* Match parent padding */
    bottom: 24px; /* Match parent padding */
    /* Calculations based on grid-template-columns: 2.5fr 0.8fr 1fr */
    /* Total fr = 4.3fr */
    left: calc((100% - 48px) * 2.5 / 4.3 + 24px);
    width: calc((100% - 48px) * 0.8 / 4.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    z-index: 0; /* Behind the table content */
}

.comparison-table {
    display: flex;
    flex-direction: column;
    position: relative; /* Ensure it's a positioning context */
    z-index: 1; /* Above the shadow pseudo-element */
}

.comparison-header-new, .comparison-row {
    display: grid;
    /* Making "Our Panel" column thinner */
    grid-template-columns: 2.5fr 0.8fr 1fr;
    align-items: center; /* Vertically center content in cells */
    /* padding is removed from the row */
}

.comparison-row:not(:last-child) {
    border-bottom: 1px solid #F3F4F6;
}

.header-cell,
.feature-cell,
.status-cell {
    padding: 20px 10px; /* Add padding to cells directly */
}

.header-cell {
    font-weight: 600;
    color: #4B5563;
    font-size: 16px;
}

.header-cell:not(:first-child) {
    text-align: center;
}

.feature-cell strong {
    display: block;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.feature-cell p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.status-cell {
    text-align: center;
}

.status-cell i {
    font-size: 28px;
}

.status-cell i.success {
    color: #10B981;
}

.status-cell i.danger {
    color: #EF4444;
}

.trust-score-row .feature-cell strong {
    margin-bottom: 0;
}

.star-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
}

.star-rating i {
    color: #FBBF24;
    font-size: 22px;
}

/* Styles for "Our Panel" column highlight */
.our-panel-cell {
    border-left: 1px solid #fbbf24;
    border-right: 1px solid #fbbf24;
    height: 100%; /* Make the cell span the full height of the row */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

.comparison-header-new .our-panel-cell {
    border-top: 1px solid #fbbf24;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.trust-score-row .our-panel-cell {
    border-bottom: 1px solid #fbbf24;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
        background-color: #fbbf24;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
    padding: 80px 0;
    background: linear-gradient(to top, #ffffff, #ffffff00, #ffffff);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}


.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.faq-section h2 span {
    color: #2563eb;
}

.faq-section .subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 16px auto 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
    background-color: #e7edfc54;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.1) 1px, transparent 1.5px);
    background-size: 18px 18px;
    border: 1px solid rgba(37, 99, 235, 0.2);


    border-radius: 35px;
    padding: 14px;

}

.faq-item {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #9ca3af;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out;
}

.faq-answer p {
    margin: 0;
    padding-top: 16px;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: #2563eb;
}


/* Customer Reviews Section - Light Theme */
.reviews-section {
    background: linear-gradient(to top, #ffffff, #ffffff00, #ffffff);
    padding: 80px 0;
    color: #1F2937; /* Dark text */
    text-align: center;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #E0E7FF;
    color: #3730A3;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.reviews-badge i {
    font-size: 20px;
}

.reviews-title {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.reviews-title span {
    color: #6366F1;
}

.reviews-subtitle {
    font-size: 18px;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto 50px;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 5px;
}

.review-date {
    font-size: 14px;
    color: #6B7280;
}

.review-stars {
    color: #FBBF24; /* Same as other star ratings */
    font-size: 18px;
    margin-bottom: 15px;
}

.review-text {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.6;
}



/* Payment Methods Section v3 */
.payment-methods-section {
    padding: 80px 0;
background: linear-gradient(to top, #ffffff00, #ffffff, #ffffff00);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payment-methods-section .container {
    position: relative;
    z-index: 1;
}


.payment-container-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.payment-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* CTA FAQ Section */
.cta-faq-section {
padding: 60px 0;
    background: linear-gradient(to top, #ffffff, #f4f7ff, #ffffff);
}

.cta-faq-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    text-align: center;
}

.cta-faq-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
}

.cta-faq-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(to right, rgba(229, 231, 235, 0.7) 0, rgba(229, 231, 235, 0.7) 1px, transparent 1px, transparent 50px),
                      repeating-linear-gradient(to bottom, rgba(229, 231, 235, 0.7) 0, rgba(229, 231, 235, 0.7) 1px, transparent 1px, transparent 50px);
    transform: skew(15deg, 15deg);
}

.cta-faq-content {
    position: relative;
    z-index: 1;
}

.cta-faq-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(59, 130, 246, 0.5);
}

.question-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    font-weight: 500;
    color: #374151;
    z-index: 2;
}

.qc-1 { top: 10%; left: -240px; }
.qc-2 { bottom: 15%; left: -100px; }
.qc-3 {    top: 5%;
    right: -250px; }
.qc-4 { bottom: 20%; right: -80px; }

@keyframes wobble {
    0%, 100% {
        transform: translate(0, 0) rotate(0);
    }
    25% {
        transform: translate(var(--move-x), var(--move-y)) rotate(2deg);
    }
    75% {
        transform: translate(calc(var(--move-x) * -0.5), calc(var(--move-y) * -0.5)) rotate(-2deg);
    }
}

.payment-container-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Color Glow / Arc */
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(79, 70, 229, 0.1), transparent),
        /* Grid Pattern */
        repeating-linear-gradient(to right, rgba(229, 231, 235, 0.6) 0, rgba(229, 231, 235, 0.6) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(to bottom, rgba(229, 231, 235, 0.6) 0, rgba(229, 231, 235, 0.6) 1px, transparent 1px, transparent 40px);
    z-index: 0;
}

.payment-window {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(60,72,100,0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.payment-window:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.payment-window-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dots span:nth-child(1) { background-color: #f87171; }
.dots span:nth-child(2) { background-color: #fbbf24; }
.dots span:nth-child(3) { background-color: #34d399; }

.address-bar {
    flex-grow: 1;
    text-align: center;
    background: #e5e7eb;
    color: #4b5563;
    padding: 6px 12px;
    border-radius: 8px;
    margin: 0 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.actions {
    display: flex;
    gap: 12px;
    color: #6b7280;
}

.payment-window-body {
    padding: 12px;
}

.payment-method-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.payment-method-row:hover {
    background-color: #f4f7ff;
}

.method-name {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 15px;
    color: #1f2937;
}

.method-name img {
    height: 22px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.2s ease;
}

.payment-method-row:hover .method-name img {
    filter: grayscale(0%);
    opacity: 1;
}

.method-amount {
    font-weight: 600;
    color: #374151;
    background-color: #e5e7eb;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 13px;
}

.payment-promo-box {
    background-color: #ffffff;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1.5px);
    background-size: 18px 18px;
    padding: 40px;
    margin-top: 40px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    border: 1px solid #e5e7eb;
}

.crypto-promo {
    margin-top: 0;
    margin-bottom: 40px;
}

.crypto-promo .section-badge {
    background-color: #fff;
    color: #f59e0b;
}

.crypto-promo h3 {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
}

.payment-logos-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.payment-logos-container::before,
.payment-logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.payment-logos-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.payment-logos-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll 20s linear infinite;
}

.payment-logos img {
    height: 40px;
    max-width: 120px;
    transition: transform 0.3s ease;
}

.payment-logos:hover {
    animation-play-state: paused;
}

.payment-logos img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Customer Experiences Section */
.customer-experiences-section {
    padding: 100px 0;
    background-color: #0B0F19;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.customer-experiences-section .reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 99px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    margin-bottom: 24px;
}

.customer-experiences-section .reviews-badge i {
    color: #38BDF8;
}

.customer-experiences-section .reviews-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.customer-experiences-section .reviews-title span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
}

.customer-experiences-section .reviews-subtitle {
    max-width: 600px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
}

.customer-experiences-section .reviews-slider-wrapper {
    position: relative;
}

.customer-experiences-section .reviews-slider {
    display: flex;
    gap: 24px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.customer-experiences-section .reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.customer-experiences-section .review-card {
    flex: 0 0 31%;
    min-width: 350px;
    padding: 32px;
    background: #101522;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: left;
}

.customer-experiences-section .review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.customer-experiences-section .reviewer-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.customer-experiences-section .reviewer-info {
    flex: 1;
}

.customer-experiences-section .reviewer-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}

.customer-experiences-section .review-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.customer-experiences-section .review-stars {
    color: #FBBF24;
    font-size: 16px;
    margin-left: auto;
}

.customer-experiences-section .review-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.customer-experiences-section .slider-nav {
    position: absolute;
    top: calc(100% + 40px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #1E293B;
    border: 1px solid #334155;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 24px;
}

.customer-experiences-section .slider-nav:hover {
    background-color: #334155;
}

.customer-experiences-section .slider-prev {
    left: 50%;
    transform: translate(-150%, -50%);
}

.customer-experiences-section .slider-next {
    right: 50%;
    transform: translate(150%, -50%);
}

.container {
    max-width: 1200px;
}

