* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* NAVBAR */
.site-header {
    background: #1e3a8a;
    padding: 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.menu-toggle {
    display: none;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: #eff6ff;
}

.hero-content {
    flex: 1;
}

.hero-image {
    max-width: 400px;
}

.primary-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    margin: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.primary-btn:hover {
    background: #1e40af;
}

.secondary-btn {
    background: transparent;
    border: 2px solid #2563eb;
    padding: 0.6rem 1.1rem;
    cursor: pointer;
}

/* FEATURES */
.features-section {
    padding: 2rem;
    background: #f9fafb;
    
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-card {
    background: white;
    padding: 1rem;
    text-align: center;
}
.features-img {
     max-width: 40%;
     height: auto;
}

/* ABOUT */
.about-section {
    padding: 2rem;
}

/* PRICING */
.pricing-section {
    background: #eff6ff;
    padding: 2rem;

}
ul.no-bullets {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}

.pricing-grid {
    display: flex;
    gap: 1rem;
}

.pricing-card {
    background: white;
    padding: 1rem;
    flex: 1;
}

.highlight {
    border: 2px solid #2563eb;
}

/* FOOTER */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer a {
    color: #93c5fd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        flex-direction: column;
    }

    .menu-toggle {
        display: block;
        background: none;
        color: white;
        border: none;
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #1e3a8a;
    }

    .nav-links.show {
        display: flex;
    }
}
