body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}

.hero {
    text-align: center;
    padding: 3rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.btn-primary {
    background: #0c7b7f;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: #094459;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
}

.feature {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature .icon {
    font-size: 2rem;
    color: #0c7b7f;
    margin-bottom: 1rem;
}

.feature h3 {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #094459;
}

.feature p {
    font-size: 0.95rem;
    color: #555;
}

.testimonials {
    padding: 3rem 2rem;
    background: #f9fbff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.testimonial strong {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
    color: #333;
}

.pricing {
    text-align: center;
    padding: 60px 20px;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pricing .subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}


.plan {
    margin: auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 50px;
    gap: 20px;
    width: 60% !important;
    display: flex;
    flex-direction: column;
    /* text-align: left; */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.plan:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.plan h3 {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.plan .price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.plan ul li {
    margin: 12px 0px;
    font-size: 1rem;
    color: #444;
}

.recommended {
    border: 2px solid #094459;
    position: relative;
    transform: scale(1.3);
}

.recommended .badge {
    position: absolute;
    top: -16px;
    right: 30%;
    background: #0c7b7f;
    color: #fff;
    font-size: 0.75rem;
    padding: 10px;
    border-radius: 5px;
}


.plans {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    justify-content: center;
}

footer {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}