@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";

/* src/styles.css */
:root {
  --primary-color: #3b82f6;
  --secondary-color: #6366f1;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}
section {
  padding: 100px 20px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-secondary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.btn-primary:hover {
  background-color: #2563eb;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}
@media (max-width: 992px) {
  section {
    padding: 80px 16px;
  }
  .container {
    max-width: 100%;
    padding: 0 8px;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 36px;
  }
}
@media (max-width: 576px) {
  section {
    padding: 64px 14px;
  }
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 28px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
