body {
    font-family: Poppins, sans-serif;
    margin: 0;
    background: #f8fafc;
    color: #333;
}

.container {
    width: 90%;
    margin: auto;
}

header {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('assets/images/hero.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #0ea5e9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.section {
    padding: 70px 20px;
    text-align: center;
}

.light {
    background: #f1f5f9;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-text {
    max-width: 700px;
    margin: auto;
}

form {
    max-width: 450px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input,
textarea {
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
}

button {
    padding: 12px;
    background: #0284c7;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

footer {
    background: #111;
    color: white;
    padding: 20px;
    text-align: center;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
}
.logo-area {
    display: flex;           /* horizontal layout */
    align-items: center;     /* vertically center text next to logo */
    gap: 12px;               /* spacing between logo and text */
  }
  
  .logo-icon {
    width: 100px;             /* square logo size */
    height: 100px;
    object-fit: contain;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;  /* stack name above caption */
  }
  
  .logo {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
  }
  
  .logo-caption {
    margin: 0;
    font-size: 12px;
    color: #64748b;
  }