.container {
  width: 90%;
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0rem;

  p {
    color: #111;
    text-indent: 1rem;
    line-height: 1.6;
  }

  .services {
    list-style: none;
    margin: 1rem 0;
  }

  .services li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted);
  }

  .services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
  }
  .btn {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  }

  .btn:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  }
}
