:root {
  --primary: #2a2a2a;
  --secondary: #e8e5df;
  --accent: #a38f6a;
  --text: #333333;
  --light: #f9f9f7;
  --border: #dddddd;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.legal-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('art-bg.jpg') center/cover;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.legal-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.last-updated {
  font-style: italic;
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Terms Content */
.terms-content {
  padding: 60px 0;
}

.terms-section {
  margin-bottom: 40px;
  background: white;
  padding: 30px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.terms-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.terms-section h2 {
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 10px;
}

.terms-section h3 {
  color: var(--primary);
  margin: 25px 0 10px;
  font-size: 1.3rem;
}

.terms-section p, 
.terms-section li {
  margin-bottom: 15px;
}

.terms-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-section li {
  position: relative;
  left: 5px;
}

.terms-section li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
    .policy-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    }

    .policy-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: var(--font-heading);
            color:rgb(205, 175, 68);
    }

    .policy-hero p {
      color: #2a2a2a;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .legal-header {
    padding: 100px 0 60px;
  }
  
  .legal-header h1 {
    font-size: 2.2rem;
  }
  
  .terms-section {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .legal-header {
    padding: 80px 0 50px;
  }
  
  .legal-header h1 {
    font-size: 2rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}