* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #f3f4f6, #e5e7eb);
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    overflow-x: hidden;
}

/* Notification Banner */
.notification-banner {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 1.25rem auto;
}

.notification-content {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0.75rem 1.25rem;
    overflow: hidden;
}

.notification-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.5s ease-in-out;
    transform: translateY(0);
    opacity: 1;
}

.notification-inner.slide-out {
    transform: translateY(-100%);
    opacity: 0;
}

.notification-inner.slide-in {
    transform: translateY(0);
    opacity: 1;
}

.sparkles-icon {
    width: 1rem;
    height: 1rem;
    color: #eab308;
    flex-shrink: 0;
}

.notification-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.amount-text {
    color: #000;
    font-weight: 600;
}

/* Main Card */
.main-card {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 2rem auto;
}

.card {
    width: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
    background: white;
    border-radius: 1.2rem;
	
}

/* victoria Logo */
.victoria-logo-container {
    /* border-radius: 1.2rem; */
    
    overflow: hidden;
}

.victoria-logo1 {
    width: 100%;
    height: auto;
    display: block;
}

 /* Card Content */
.card-content {
    background: white;
    padding: 0 1.25rem 1.5rem 1.25rem;
}

.price-section {
    text-align: center;
    margin-bottom: 1.25rem;
}

.price {
    color: #0071CE;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.subtitle {
    color: #0071CE;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

/* Steps */
.steps-container {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #dbeafe;
    color: #0071CE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

/* CTA Button */
.cta-button {
    width: 100%;
    background: #000;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 1.25rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background: #000000;
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
}

/* Trustpilot Section */
.trustpilot-section {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 2rem auto;
}

.trustpilot-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
	margin-top: 1rem;
}

.trustpilot-star {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
}

.trustpilot-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
}

.trustpilot-rating {
    text-align: center;
    margin-bottom: 1rem;
	
}

.rating-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
}

.rating-text {
    color: #4b5563;
    margin-left: 0.5rem;
}

/* Fading Reviews */
.reviews-container {
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card-fade {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1rem;
    max-width: 500px;
    margin: 0 auto;
    transition: opacity 0.5s ease-in-out;
}

.review-card-fade.fade-in {
    opacity: 1;
}

.review-card-fade.fade-out {
    opacity: 0;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.review-star {
    width: 1rem;
    height: 1rem;
    color: #eab308;
}

.review-text {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
    text-align: center;
}

.review-author {
    font-size: 0.75rem;
    font-weight: 600;
    color: #111827;
    text-align: center;
}

/* How It Works Section */
.how-it-works-section {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 2rem auto;
	
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 1.5rem;
}

.steps-with-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
	padding-bottom: 1rem;
}

.image-step {
    display: flex;
    gap: 1rem;
	padding-left: 1rem;
}

.step-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon {
    width: 2rem;
    height: 2rem;
    color: #000;
}

.step-info {
    flex: 1;
}

.step-title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.step-description {
    font-size: 0.875rem;
    color: #4b5563;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 2rem auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: #111827;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 0.875rem;
    color: #4b5563;
    margin-top: 0.75rem;
    padding: 0 1rem 0.5rem 1rem;
}

/* Second CTA Section */
.second-cta-section {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 2rem auto;
}

.cta-button-large {
    width: 100%;
    background: #06C167;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 1.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button-large:hover {
    background: #000000;
}

/* Footer Section */
.footer-section {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 2rem auto;
}

.disclaimer {
    margin-bottom: 1rem;
	padding: 1rem;
}

.disclaimer-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.5;
}

.copyright {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.75rem;
    color: #4b5563;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-link {
    color: #000;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }
    
    .notification-banner {
        margin-bottom: 1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}
