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

body {
    font-family: Inter,sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    z-index: 100;
    top: 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #23CB7F;
}

.contact-info {
    color: #23CB7F;
    font-weight: bold;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 564px;
    background-color: #f6f9fc;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text{
  padding: 80px 0;
}
.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 .highlight {
    color: #23CB7F;
}

.hero-text p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.btn{
    padding: 25px 30px;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    align-items: center;
    text-align: center;  
    background: #23CB7F;
    color: white;  
}

.btn:hover {
  background: #21b572;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.hero-image img {
    height: 100%;
    object-fit: contain;
    object-position: right;
}
.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border:3px solid #23CB7F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}
.feature-icon img{
  height: 40px;
  width: 40px;
}
.feature-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.footer-content a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: #23CB7F;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .nav-menu {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
