:root {
  --primary: #7A1C3F;
  --secondary: #2D2D2D;
  --background: #FFFFFF;
  --footer-bg: #2D2D2D;
  --button: #7A1C3F;
  --section-bg-1: #F5F5F5;
  --section-bg-2: #EAEAEA;
  --section-bg-3: #DFDFDF;
  --font-main: 'Montserrat', 'Helvetica Neue', sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--background);
  color: var(--secondary);
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 400;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--button);
  color: white;
  border-radius: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-bg-1 {
  background-color: var(--section-bg-1);
}

.section-bg-2 {
  background-color: var(--section-bg-2);
}

.section-bg-3 {
  background-color: var(--section-bg-3);
}

footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 3rem 0;
}

footer a {
  color: white;
}

footer a:hover {
  color: var(--primary);
}

.card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
  }
}