:root {
  --primary-color: #9E1B32;
  --secondary-color: #ffffff;
  --accent-color: #A0522D;
  --text-color: #333333;
  --light-text: #ffffff;
  --dark-bg: #222222;
  --border-color: #dddddd;
  --shadow: rgba(0, 0, 0, 0.1);
  --card-bg: #f9f9f9;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

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

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--light-text);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--shadow);
  color: var(--light-text);
}

/* Header */
.header {
  background-color: var(--light-text);
  box-shadow: 0 2px 15px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.logo svg {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  list-style-type: none;
}

.nav-item {
  margin-left: 25px;
}

.nav-link {
  font-weight: 600;
  font-size: 16px;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover:after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color), #5D0F1D);
  color: var(--light-text);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: 50px;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Benefits Section */
.benefits {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px var(--shadow);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(158, 27, 50, 0.1);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-color);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* How It Works */
.how-it-works {
  padding: 70px 0;
  background-color: #f9f9f9;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step-counter;
}

.step-card {
  padding: 30px;
  background-color: var(--light-text);
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
  position: relative;
  counter-increment: step-counter;
}

.step-card::before {
  content: counter(step-counter);
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Features */
.features {
  padding: 70px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: rgba(158, 27, 50, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--primary-color);
}

.feature-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color), #5D0F1D);
  padding: 70px 0;
  color: var(--light-text);
  text-align: center;
}

.cta-content {
  max-width: 650px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta .btn {
  background: var(--light-text);
  color: var(--primary-color);
}

.cta .btn:hover {
  background: var(--accent-color);
  color: var(--light-text);
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: #999;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-info {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  color: var(--light-text);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer h4 {
  color: var(--light-text);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul {
  list-style-type: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #999;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--light-text);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media screen and (max-width: 992px) {
  .benefits-container, .steps, .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-info {
    grid-column: span 2;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: var(--light-text);
    width: 80%;
    height: calc(100% - 70px);
    padding: 20px;
    transition: var(--transition);
    box-shadow: -5px 0 15px var(--shadow);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 0;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-item:last-child {
    border-bottom: none;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
}

@media screen and (max-width: 576px) {
  .benefits-container, .steps, .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-info {
    grid-column: span 1;
  }
}
