/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  height: 100%;
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-display: swap;
  line-height: 1.6;
  color: #111111;
  background-color: #ffffff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
.full-width {
  width: 100%;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.section {
  padding-top: 30px;
  padding-bottom: 150px;
  background: #F1F1F3;
  min-height: calc(100vh - 60px);
}
:root {
  --primary-color: #111111;
  --primary-hover: #2A2A2A;
  --secondary-color: #6B7280;
  --accent-color: #2563EB;
  --accent-hover: #1d4ed8;
  --text-dark: #111111;
  --text-light: #6B7280;
  --background-light: #F9FAFB;
  --border-color: #E5E7EB;
}
.cta-primary {
  background: #2563EB;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s ease;
  color: white;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover {
  background: #1d4ed8;
  color: white;
  text-decoration: none;
}
.cta-secondary {
  background: white;
  border: 1px solid #E5E7EB;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
  color: #111111;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.cta-secondary:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
  text-decoration: none;
}
.container-max {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 480px) {
  .container-max {
    padding: 0 24px;
  }
}
@media (min-width: 768px) {
  .container-max {
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .container-max {
    padding: 0 40px;
  }
}
.section-padding {
  padding: 40px 0;
}
@media (min-width: 480px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}
@media (min-width: 1024px) {
  .section-padding {
    padding: 100px 0;
  }
}
.hero-gradient {
  background: #FFFFFF;
  color: #111111;
  text-align: center;
}
.card-elevated {
  background: white;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid #E5E7EB;
  transition: all 0.2s ease;
}
.card-elevated:hover {
  border-color: #D1D5DB;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .card-elevated {
    padding: 24px;
  }
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .grid-2 {
    gap: 40px;
  }
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1200px) {
  .grid-3 {
    gap: 40px;
  }
}
h2 {
  margin-top: 0px;
  font-size: 25px;
  font-weight: 600;
}
.intro {
  max-width: 600px;
  text-align: center;
  margin-bottom: 30px;
  color: #303133;
  font-size: 18px;
  line-height: 23px;
}
.links {
  margin-top: 70px;
}
.links a {
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  height: 60px;
  line-height: 60px;
  border-radius: 2px;
  border: 2px solid var(--primary-color);
}
.links a.accent {
  border: 2px solid #2563EB;
  color: #FFFFFF;
  background: #2563EB;
}
.success-form {
  color: green;
  font-size: 14px;
}
.error-form {
  color: red;
  font-size: 14px;
}
button.send {
  margin-top: 20px;
  background: #2563EB;
  color: white;
  width: 150px;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}
button.send:hover {
  background: #1d4ed8;
}
@media screen and (max-width: 1919px) {
  h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .intro {
    font-size: 16px;
    line-height: 20px;
  }
  .links {
    margin-top: 40px;
  }
  .links a {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
  }
  button.send {
    width: 100px;
    height: 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 959px) {
  h2 {
    font-size: 30px;
  }
  .section {
    min-height: 100vh;
  }
  .links a {
    width: 230px;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
  }
  .intro {
    padding: 0 20px;
  }
}

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