/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--secondary);
  background-color: var(--gray-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  background-image: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&q=80&w=1200');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: white;
  max-width: 48rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.divider {
  width: 8rem;
  height: 0.25rem;
  background-color: #dc2626;
  margin-bottom: 2rem;
}

.hero-content p {
  font-size: 1.5rem;
  opacity: 0.9;
}

/* About Section */
.about {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 8rem 0;
}

.about-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: right;
}

.about-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 3rem;
}

.about-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.feature-card {
  background-color: rgb(255, 255, 255);
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.60);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(255, 0, 0, 0.521);
}

.feature-card .icon {
  color: #dc2626;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #9ca3af;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .grid-container {
      grid-template-columns: 1fr;
  }
  
  body {
      padding: 2rem 1rem;
  }
  
  h1 {
      font-size: 2rem;
  }
  
  .card {
      padding: 2rem;
  }
}

