/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Root Variables */
:root {
    /* Main Colors */
    --primary-blue: #5EB7D7;
    --accent-orange: #E16B0B;
    --accent-orange-hover: #FF9F18;
    --footer-purple: #7545B9;
    --dark-blue: #5291BA;
    --light-purple: #E7E4FE;

    /* Text Colors */
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #000000;

    /* Container */
    --container-width: 1200px;
    --container-padding: 20px;

    /* Spacing */
    --section-padding: 80px 0;
    --element-margin: 20px;

    /* Typography */
    --font-family: 'Arial', sans-serif;
    --font-size-base: 16px;
    --font-size-h1: 48px;
    --font-size-h2: 36px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;

    /* Border Radius */
    --border-radius: 8px;
    --border-radius-large: 12px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Base Typography */
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--element-margin);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

p {
    margin-bottom: var(--element-margin);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-orange);
    color: var(--text-white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
}

.btn:hover {
    background-color: var(--accent-orange-hover);
    color: var(--text-white);
    text-decoration: none;
}

.btn-white {
    background-color: var(--text-white);
    color: var(--text-dark);
}

.btn-white:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Header Styles */
.header {
    background-color: var(--primary-blue);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text .main {
    font-size: 20px;
    font-weight: 700;
}

.logo-text .sub {
    font-size: 14px;
    font-weight: 400;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-orange-hover);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-menu .nav-links a {
    font-size: 18px;
    padding: 10px 0;
}

/* Footer Styles */
.footer {
    background-color: var(--footer-purple);
    padding: 60px 0 30px;
    position: relative;
}

.footer .container {
    background-color: var(--bg-dark);
    border-radius: var(--border-radius-large);
    padding: 40px;
    position: relative;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
}

.footer-logo img {
    height: 50px;
    margin-right: 15px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-text .main {
    font-size: 24px;
    font-weight: 700;
}

.footer-logo-text .sub {
    font-size: 16px;
    font-weight: 400;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
    color: var(--text-white);
}

.footer-contacts a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-contacts a:hover {
    color: var(--accent-orange-hover);
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-nav-column h4 {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.footer-nav-column ul li a:hover {
    color: var(--accent-orange-hover);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: var(--text-white);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-orange-hover);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    /* Account for fixed header */
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--primary-blue) 10%, var(--dark-blue) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero .btn {
    font-size: 18px;
    padding: 15px 30px;
    margin-bottom: 40px;
}

.trusted-by {
    margin-top: 40px;
}

.trusted-by p {
    font-size: 16px;
    opacity: 0.8;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-large);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.benefit-card {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    gap: 60px;
}

.benefit-card-reverse {
    flex-direction: row-reverse;
}

.benefit-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--light-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.benefit-image {
    flex: 1;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Product Sourcing Section */
.product-sourcing-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.sourcing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.sourcing-card {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: var(--transition);
}

.sourcing-card:hover {
    transform: translateY(-5px);
}

.sourcing-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sourcing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sourcing-card:hover .sourcing-image img {
    transform: scale(1.1);
}

.sourcing-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sourcing-icon {
    width: 40px;
    height: 40px;
    background: var(--light-purple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.sourcing-content h3 {
    color: var(--text-white);
    font-size: 16px;
    margin: 0;
    line-height: 1.3;
}

.sourcing-cta {
    text-align: center;
}

/* Easy Start Section */
.easy-start-section {
    padding: 100px 0;
    background-color: var(--light-purple);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

.easy-start-cta {
    text-align: center;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.testimonial-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 42px;
}

.testimonial-card {
    background: var(--light-purple);
    border-radius: var(--border-radius-large);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card p {
    font-size: 24px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.faq-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 0;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--text-dark);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--accent-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    margin: 0;
    padding-top: 10px;
    line-height: 1.6;
}

/* Hero White Variant */
.hero-white {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 80vh;
}


.hero-white h1 {
    color: var(--text-dark);
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-white p {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 40px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
}

/* Dropshipping Easy Section */
.dropshipping-easy-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.dropshipping-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.dropshipping-text h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin: 0;
}

.dropshipping-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-purple);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.dropshipping-cta {
    text-align: center;
}

/* Guidance Section */
.guidance-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.guidance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guidance-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
}

.guidance-text h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.guidance-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.guidance-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-icon {
    font-size: 24px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

/* Store Ready Section */
.store-ready-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.store-ready-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.store-ready-text h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.store-ready-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.store-ready-list li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}

.store-ready-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 20px;
}

.store-ready-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.products-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.products-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
}

.products-text h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.products-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.why-choose-list li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}

.why-choose-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 20px;
}

.why-choose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 42px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonials-section .testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonials-section .testimonial-card p {
    font-size: 18px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonials-section .testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

/* Blog Hero Section */
.blog-hero {
    padding: 120px 0 80px;
    background: var(--bg-white);
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-post-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 30px;
}

.blog-post-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.read-more-btn {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--accent-orange-hover);
    text-decoration: none;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.blog-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius-large);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-light);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.blog-modal-close:hover {
    color: var(--accent-orange);
    background-color: var(--light-purple);
}

.blog-modal-content h2 {
    padding: 40px 40px 20px;
    margin: 0;
    font-size: 32px;
    color: var(--text-dark);
    border-bottom: 1px solid #e0e0e0;
}

.blog-modal-body {
    padding: 20px 40px 40px;
}

.blog-modal-body p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.blog-modal-body h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 30px 0 15px;
    font-weight: 600;
}

.blog-modal-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.blog-modal-body li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Register Hero Section */
.register-hero {
    padding: 120px 0 80px;
    background: var(--bg-white);
    text-align: center;
}

.register-hero h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

/* Register Form Section */
.register-form-section {
    padding: 0 0 100px;
    background-color: var(--bg-light);
}

.register-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.register-form-container h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin: 0 0 40px 0;
    font-weight: 600;
    text-align: left;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="tel"] {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
    box-sizing: border-box;
}

.register-form input[type="text"]:focus,
.register-form input[type="email"]:focus,
.register-form input[type="tel"]:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(225, 107, 11, 0.1);
}

.register-form input::placeholder {
    color: var(--text-light);
    font-size: 16px;
}

/* Checkbox Styling */
.checkbox-group {
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Register Button */
.register-btn {
    background: var(--accent-orange);
    color: var(--text-white);
    border: none;
    padding: 18px 30px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
    width: 100%;
}

.register-btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 107, 11, 0.3);
}

.register-btn:active {
    transform: translateY(0);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.success-content {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius-large);
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: successSlideIn 0.3s ease-out;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 30px;
}

.success-content h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin: 0 0 15px;
    font-weight: 600;
}

.success-content p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 0 30px;
    line-height: 1.6;
}

.success-content .btn {
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.success-content .btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Pricing Hero Section */
.pricing-hero {
    padding: 120px 0 80px;
    background: var(--bg-white);
    text-align: center;
}

.pricing-hero h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    font-weight: 700;
}

.pricing-price {
    margin-bottom: 15px;
}

.pricing-price .currency {
    font-size: 24px;
    color: var(--text-dark);
    vertical-align: top;
    font-weight: 600;
}

.pricing-price .amount {
    font-size: 48px;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0 5px;
}

.pricing-price .period {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-tagline {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.feature-included {
    color: var(--text-dark);
}

.feature-excluded {
    color: var(--text-light);
    opacity: 0.6;
}

.pricing-footer {
    text-align: center;
}

.pricing-btn {
    background: var(--text-dark);
    color: var(--text-white);
    border: none;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.pricing-btn:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-btn.featured {
    background: var(--accent-orange);
}

.pricing-btn.featured:hover {
    background: var(--accent-orange-hover);
    box-shadow: 0 4px 15px rgba(225, 107, 11, 0.3);
}

/* Policy Pages */
.policy-hero {
    padding: 120px 0 80px;
    background: var(--bg-white);
    text-align: center;
}

.policy-hero h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.effective-date {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.policy-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.policy-text p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.policy-text h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 10px;
}

.policy-text h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.policy-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.policy-text li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-text ul ul {
    margin: 10px 0;
    padding-left: 20px;
}

.policy-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: var(--footer-purple);
    color: var(--text-white);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta-section .btn {
    background: var(--text-white);
    color: var(--footer-purple);
    font-size: 18px;
    padding: 15px 30px;
}

.final-cta-section .btn:hover {
    background: var(--bg-light);
    color: var(--footer-purple);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu .nav-links {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer .container {
        padding: 30px 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-contacts {
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* Home page responsive */
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-card {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
    }

    .benefit-card-reverse {
        flex-direction: column;
    }

    .benefit-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .sourcing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-card {
        padding: 40px 20px;
    }

    .testimonial-card p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 15px;
        --font-size-h1: 36px;
        --font-size-h2: 28px;
        --font-size-h3: 20px;
    }

    .header .container {
        padding: 0 15px;
    }

    .logo img {
        height: 30px;
    }

    .logo-text .main {
        font-size: 16px;
    }

    .logo-text .sub {
        font-size: 12px;
    }

    /* Home page mobile */
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .sourcing-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .testimonial-section h2,
    .faq-header h2,
    .final-cta-section h2 {
        font-size: 32px;
    }

    /* Blog page mobile */
    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-hero p {
        font-size: 16px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-post-content {
        padding: 20px;
    }

    .blog-post-content h3 {
        font-size: 18px;
    }

    .blog-modal-content {
        width: 98%;
        margin: 5% auto;
    }

    .blog-modal-content h2 {
        font-size: 20px;
        padding: 25px 15px 10px;
    }

    .blog-modal-body {
        padding: 10px 15px 25px;
    }

    .blog-modal-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
        width: 35px;
        height: 35px;
    }

    /* Register page mobile */
    .register-hero h1 {
        font-size: 28px;
    }

    .register-form-container {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .register-form-container h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .register-form {
        gap: 20px;
    }

    .register-form input[type="text"],
    .register-form input[type="email"],
    .register-form input[type="tel"] {
        padding: 12px 15px;
        font-size: 14px;
    }

    .checkbox-text {
        font-size: 13px;
    }

    .register-btn {
        padding: 15px 25px;
        font-size: 16px;
    }

    .success-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .success-content h3 {
        font-size: 20px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 20px;
    }

    /* Pricing page mobile */
    .pricing-hero h1 {
        font-size: 28px;
    }

    .pricing-hero p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .pricing-header h3 {
        font-size: 22px;
    }

    .pricing-price .amount {
        font-size: 36px;
    }

    .pricing-features li {
        font-size: 13px;
    }

    .pricing-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Policy pages mobile */
    .policy-hero h1 {
        font-size: 28px;
    }

    .effective-date {
        font-size: 14px;
    }

    .policy-content {
        padding: 60px 0;
    }

    .policy-text {
        padding: 0 20px;
    }

    .policy-text h2 {
        font-size: 22px;
        margin: 25px 0 12px 0;
    }

    .policy-text h3 {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }

    .policy-text p,
    .policy-text li {
        font-size: 14px;
    }

    .policy-text ul {
        padding-left: 15px;
    }

    /* Policy pages responsive */
    .policy-hero h1 {
        font-size: 36px;
    }

    .effective-date {
        font-size: 16px;
    }

    .policy-text h2 {
        font-size: 24px;
        margin: 30px 0 15px 0;
    }

    .policy-text h3 {
        font-size: 20px;
        margin: 25px 0 12px 0;
    }

    .policy-text p,
    .policy-text li {
        font-size: 15px;
    }

    /* Pricing page responsive */
    .pricing-hero h1 {
        font-size: 36px;
    }

    .pricing-hero p {
        font-size: 18px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-header h3 {
        font-size: 24px;
    }

    .pricing-price .amount {
        font-size: 40px;
    }

    /* Register page responsive */
    .register-hero h1 {
        font-size: 36px;
    }

    .register-form-container {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .register-form-container h2 {
        font-size: 28px;
    }

    .success-content {
        padding: 40px 30px;
        margin: 20px;
    }

    .success-content h3 {
        font-size: 24px;
    }

    /* For Beginners page responsive */
    .hero-white .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-white h1 {
        font-size: 36px;
    }

    .hero-white p {
        font-size: 18px;
    }

    .dropshipping-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dropshipping-features {
        grid-template-columns: 1fr;
    }

    .guidance-content,
    .store-ready-content,
    .products-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-section .testimonial-card {
        padding: 30px 20px;
    }

    /* Blog page responsive */
    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-hero p {
        font-size: 18px;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .blog-modal-content h2 {
        font-size: 24px;
        padding: 30px 20px 15px;
    }

    .blog-modal-body {
        padding: 15px 20px 30px;
    }
}