/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation styles */
nav {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    width: 120px;
    height: auto;
}

/* Update left side navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: 0; /* Remove left margin */
}

/* Create a wrapper for left side items */
.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
    padding: 1rem 0;
}

.nav-item > a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item:hover > a {
    color: #2874f0;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
}

.nav-item:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #2874f0;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-primary {
    background-color: #ffd814;
    color: #333;
}

.btn-primary:hover {
    background-color: #f7ca00;
}

.btn-secondary {
    background-color: transparent;
    color: #2874f0;
}

/* Hero section styles */
.hero {
    background-color: #f1f3f6;
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2874f0;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #2874f0;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}



.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: #2874f0;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Stats section styles */
.stats {
    padding: 4rem 0;
    background-color: #2874f0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Business benefits section styles */
.business-benefits {
    padding: 4rem 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: #2874f0;
    text-decoration: none;
}

/* Features section styles */
.features {
    padding: 4rem 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #2874f0;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2874f0;
}

/* Seller tools section styles */
.seller-tools {
    padding: 4rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tool-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.tool-card ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

/* Categories section styles */
.categories {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin-left: 20px;
}

.category-content {
    padding: 1rem;
    text-align: center;
}

.category-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2874f0;
}

/* Testimonials section styles */
.testimonials {
    padding: 4rem 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 1rem;
}

/* Get started section styles */
.get-started {
    padding: 4rem 0;
    background: #2874f0;
    color: #fff;
    text-align: center;
}

.get-started h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.get-started .btn {
    margin: 2rem 0;
}

.requirements {
    display: inline-block;
    text-align: left;
    margin-top: 2rem;
}

.requirements ul {
    list-style: none;
    margin-top: 1rem;
}

.requirements ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.requirements ul li:before {
    content: "✓";
    margin-right: 0.5rem;
    color: #ffd814;
}

/* Footer styles */
footer {
    background-color: #172337;
    padding: 4rem 0 2rem;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #878787;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #878787;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .auth-buttons .btn-secondary {
        display: none;
    }
    .steps-container {
        grid-template-columns: 1fr;
    }
    .benefits-grid,
    .tools-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.content-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.content-section:nth-child(even) {
    background-color: #f8f9fa;
}

.content-section h2 {
    color: #2874f0;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem 0;
    }
}
