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

:root {
    --primary-color: #0099FF;
    --secondary-color: #E040FB;
    --text-color: #213547;
    --bg-color: #ffffff;
    --gray-light: #f9f9f9;
    --gray: #888;
    --container-width: 80%;
    --gradient-start: #00C6FF;
    --gradient-end: #0072FF;
    --store-gradient-start: #67B26F;
    --store-gradient-end: #4ca2cd;
}

body {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 1rem 0;
    background-color: white;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.language-select {
    padding: 0.5em;
    border: 1px solid var(--gray);
    border-radius: 4px;
    margin-right: 1rem;
}

/* Banner Section */
.banner {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.banner-content {
    max-width: 600px;
    text-align: left;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #212529;
}

.banner-subtitle {
    font-size: 1.3rem;
    color: #495057;
    margin-bottom: 1.5rem;
}

.banner-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.banner-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.banner-features li {
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 1rem;
}

.banner-cta {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .banner {
        padding: 4rem 0 3rem;
    }
    
    .banner h1 {
        font-size: 2.2rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .banner-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Banner Wrapper: Flexbox Layout */
.banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Left Side (Text) */
.banner-content {
    flex: 1; /* Takes up available space */
}

/* Right Side (Image) */
.banner-image {
    flex: 1; /* Takes up available space */
    display: flex;
    justify-content: flex-end; /* Push image to the right */
}

.banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* Optional */
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-image {
        order: 1; /* Keep image below text */
        justify-content: center; /* Center the image */
    }
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.section-header p {
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background-color: #f1f3f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #212529;
}

.feature-content p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header {
        text-align: center;
    }
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.price-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.price-header {
    margin-bottom: 2rem;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--gray);
    font-size: 0.9rem;
}

.price {
    font-size: 4rem;
    font-weight: bold;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
}

.currency {
    font-size: 2rem;
    margin-left: 0.25rem;
}

.lets-talk {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.price-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.price-features li {
    margin: 0.75rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.price-features li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.price-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Footer Styles */
footer {
    background-color: var(--gray-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--gray);
    text-decoration: none;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin: 0.5rem 0;
}

.footer-column p {
    color: var(--gray);
    margin: 0.5rem 0;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .banner h1 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav {
        flex-direction: column;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

.terms-wrapper {
    width: 100%;
}