
/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #F5F1EB;
  color: #333333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Container ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Header ===== */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* ===== Navigation ===== */
nav {
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nav-links li a.active {
  color: #A67C52;
  font-weight: bold;
}

.quote-btn {
  background: #A67C52;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 4px;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  padding: 60px 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  background: #A67C52;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.hero-image {
  flex: 1;
}

/* ===== Sections ===== */
section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

/* ===== Cards ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #eee;
}

.card h3 {
  margin-bottom: 10px;
}

/* ===== Process Steps ===== */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 200px;
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
}

/* ===== Footer ===== */
footer {
  background: #FFFFFF;
  padding: 40px 0;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.footer-grid h4 {
  margin-bottom: 10px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 8px;
}

.footer-grid ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
}

/* ===== Forms ===== */
form input,
form textarea,
form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ===== Responsive ===== */
@media(max-width: 768px){
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    border: 1px solid #eee;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    flex-direction: column;
  }
}