:root {
  --primary-color: #ff6b6b;
  --secondary-color: #c44569;
  --background-color: #1e272e;
  --text-color: #d2dae2;
  --accent-color: #feca57;
  --card-bg-color: #2c3a47;
  --container-width: 1100px;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* Header styles */
header {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.header-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

/* Main button style */
.main-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: #333;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Features section */
.features {
  padding: 80px 0;
  background-color: #232d36;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  text-align: center;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  position: relative;
  z-index: 1;
}

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

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

.testimonial-card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  left: -15px;
  top: -20px;
  opacity: 0.2;
  color: var(--primary-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.author-info p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Footer */
footer {
  background-color: #141a1f;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

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

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s;
}

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

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 20px;
}

.disclaimer {
  background-color: #0d1318;
  padding: 15px 0;
  text-align: center;
}

.disclaimer p {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Responsive styles */
@media (max-width: 768px) {
  header {
    padding: 60px 0 80px;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.8rem;
  }
  
  .main-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
}
