
/* ================= style.css ================= */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f2ec;
    color: #2c2c2c;
  }
  
  header {
    background: #e7e2d8;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .hero {
    padding: 60px 40px;
    text-align: center;
    background: #efeade;
  }
  
  .section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .features, .pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .card, .price-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  
  .price {
    font-size: 28px;
    color: #6b8e7f;
    margin: 15px 0;
    font-weight: 700;
  }
  
  .btn {
    padding: 12px 24px;
    background: #6b8e7f;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
  }
  
  .center { text-align: center; }
  
  footer {
    background: #e7e2d8;
    padding: 30px;
    text-align: center;
  }

  /* ================= contact.css (MATCHED THEME) ================= */
body { margin:0; font-family:'Inter',sans-serif; background:#f5f2ec; color:#2c2c2c; }

.top-header { background:#e7e2d8; padding:20px 40px; display:flex; justify-content:space-between; align-items:center; }
.top-header nav a { margin-left:20px; text-decoration:none; color:#333; font-weight:500; }
.top-header nav a.active { color:#6b8e7f; font-weight:700; }

.contact-hero { background:#efeade; padding:60px 20px; text-align:center; }
.contact-section { padding:60px 20px; }

.contact-container { max-width:1200px; margin:auto; display:grid; grid-template-columns:1fr 1fr; gap:40px; }

.contact-info, .contact-form { background:white; padding:30px; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.06); }

.info-item { margin:15px 0; }

.form-group { margin-bottom:15px; }
.form-group label { display:block; font-weight:600; margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:10px; border-radius:6px; border:1px solid #ccc; }

.btn-submit { background:#6b8e7f; color:white; border:none; padding:12px 20px; border-radius:6px; font-size:16px; cursor:pointer; }

.map-section iframe { width:100%; height:350px; border:none; }

.footer { background:#e7e2d8; padding:25px; text-align:center; }

@media(max-width:900px){ .contact-container{ grid-template-columns:1fr; } }