* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f8fafc;
    color: #0f172a;
}

/* SERVICES */
.services-section {
    padding: 70px 8%;
    background: #ffffff;
}

.services-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card img {
    width: 50px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p,
.service-card li {
    font-size: 14px;
    color: #475569;
}

.service-card ul {
    padding-left: 18px;
}

/* WHY */
.why-section {
    padding: 60px 8%;
    text-align: center;
}

.why-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.why-card {
    background: #e0f2fe;
    color: #0369a1;
    padding: 20px 30px;
    border-radius: 12px;
    font-weight: 600;
}

/* TESTIMONIAL */
.testimonial-section {
    padding: 60px 8%;
    background: #ffffff;
    text-align: center;
}

.testimonial {
    max-width: 500px;
    margin: auto;
}

.testimonial img {
    width: 100px;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    color: #334155;
}

/* FAQ */
.faq-section {
    padding: 60px 8%;
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.faq {
    max-width: 600px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-grid {
        flex-direction: column;
    }
}

.navbar {
  background: var(--white);
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

nav a {
  margin-left: 26px;
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

.logo img {
    height: 80px;        /* control logo size */
    width: auto;
    display: block;
}

.navbar {
    display: flex;
    align-items: center;
}