* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
body {
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}
.hero-content {
    max-width: 600px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.tagline, .tagline-ar {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
}
.btn:hover {
    background: #3e8e41;
}
.section {
    padding: 2rem;
}
.section.light {
    background: #fff;
}
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}
.feature {
    flex: 1;
    min-width: 240px;
}
.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.included-list {
    list-style: disc;
    padding-left: 2rem;
    margin-top: 1rem;
}
.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-evenly;
}
.plan {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 280px;
    text-align: center;
}
.plan h3 {
    margin-bottom: 0.5rem;
}
.price {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #4CAF50;
}
footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: #fff;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin-top: 1rem;
    }
}
