

    :root {
      --primary: #D4B06A;
      --accent: #C7A892;
      --bg: #FDF9F2;
      --surface: #FFFFFF;
      --text: #4A4038;
      --muted: #8A7A6C;
      --border: #EFE4D3;
      --hero-gradient-1: #f3e5d0;
      --hero-gradient-2: #d7b268;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Times New Roman', Times, serif;
    }

    body {
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
    }

img{
  width:350px;
  padding:0;
  margin:0;
}
    /* HERO */
    header {
      background: linear-gradient(135deg, var(--hero-gradient-1), var(--hero-gradient-2));
     padding:30px; 
      text-align: center;
    }

    header h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    header h2 {
      font-weight: 400;
      margin-bottom: 15px;
    }

    header p {
      max-width: 700px;
      margin: auto;
      font-size:1.3rem;
    }

    p {

      margin: auto;
      font-size:20px;
      padding-bottom:10px
    }


    /* LAYOUT */
    .container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
    }

    .card {
      background: var(--surface);
      border: 3px solid var(--border);
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 25px;
    }

    h2 {
      margin-bottom: 10px;
      font-size:1.5rem;
    }

    /* VALUES GRID */
    .values {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px;
      margin-top: 15px;
    }

    .value {
      padding: 15px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: var(--bg);
    }

    /* CTA */
    .cta {
      text-align: center;
      margin-top: 40px;
   
    }

    .cta input {
      padding: 12px;
      width: 250px;
      border: 1px solid var(--border);
      border-radius: 8px;
      margin-right: 10px;
    }

    .cta button {
      background: var(--primary);
      border: none;
      padding: 12px 18px;
      border-radius: 8px;
      cursor: pointer;
      color: white;
      font-size: 1rem;
      transition: 0.3s;
        margin:20px;
    }

    .cta button:hover {
      background: #b89655;
    }

    .secondary-btn {
      margin-top: 10px;
      display: inline-block;
      background: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
    }

    .secondary-btn:hover {
      background: var(--primary);
      color: white;
    }

    /* SOCIALS */
.socials {
  text-align: center;
  margin-top: 30px;
}

.socials h3 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #EFE4D3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #4A4038;
  font-size: 20px;
  transition: 0.3s;
}

.social-link:hover {
  background: #D4B06A;
  color: white;
  transform: translateY(-3px);
}

    footer {
      text-align: center;
      padding: 20px;
      color: var(--muted);
      font-size: 0.9rem;
    }



/* DROPDOWN */
.menu {
  margin: 0;
}

.card {
  position: relative;
  cursor: pointer;
  overflow: visible;
  padding-right: 50px; /* room for arrow */
}

/* Arrow */
/* ONLY dropdown cards get arrow */
.dropdown::after {
  content: "⌄";
  position: absolute;

  right: 20px;
  top: 20px;

  font-size: 2rem;
  color:var(--accent);

  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.dropdown.active::after {
  transform: rotate(180deg);
}

/* Stay open when clicked */
.card.active .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.card {
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  z-index: 10;

  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;

  transition: all 0.25s ease;

  margin-top: 10px;
  padding: 15px;
  font-size: 1.3rem;;
  background: var(--border);
  border: 3px solid var(--muted);
  border-radius: 8px;
}
/* Stay open after click */
.card.active .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown:hover ~ .card,
.dropdown.active ~ .card {
  display: none;
}

