.elementor-2803 .elementor-element.elementor-element-9c85d98{--display:flex;}/* Base Variables */
:root {
  --primary: #B18C57;  /* Rich brown */
  --accent: #4A8A64;   /* Complementary green */
  --bg: #f4f7f6;
  --alt-bg: #eaf6f1;
  --text: #333;
}

/* Typography and Reset */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  margin: 0;
  padding: 0;
  background: var(--bg);
}

/* Hero Section */
.gift-hero {
  background: linear-gradient(rgba(177, 140, 87, 0.7), rgba(177, 140, 87, 0.7)), url('https://images.unsplash.com/photo-1607082352207-f779fb9e5c3f') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  animation: fadeSlideDown 1s ease-out;
}

.gift-hero-text h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.gift-hero-text p {
  font-size: 1.2em;
  max-width: 600px;
  margin: auto;
}

/* Sections */
.gift-section {
  background: var(--bg);
  padding: 60px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.gift-section.alt {
  background: var(--alt-bg);
}

.gift-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--primary);
}

.gift-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* Grid */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.gift-grid li {
  background: white;
  padding: 15px 20px;
  border-left: 5px solid var(--accent);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.gift-grid li:hover {
  transform: translateY(-5px);
}

/* Impact List */
.impact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.impact-list li {
  font-size: 1.1em;
  margin: 10px 0;
}

/* Button Animation */
.gift-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gift-button:hover {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.gift-cta {
  text-align: center;
  padding: 60px 20px;
  background: var(--primary);
  color: white;
  animation: fadeInUp 1s ease-out;
}

.gift-cta h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}