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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #2c3e50;
  line-height: 1.6;
  background-color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary, .btn-secondary, .btn-submit {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.btn-primary {
  background-color: #3498db;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #3498db;
  color: #3498db;
}
.btn-secondary:hover {
  background-color: #3498db;
  color: #ffffff;
}

.alert {
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 4px;
  font-weight: 600;
  text-align: left;
}

.alert-success {
  background-color: rgb(209.304, 244.696, 224.312);
  color: rgb(31.924, 141.576, 78.422);
  border-left: 4px solid #2ecc71;
}

.alert-error {
  background-color: rgb(250.5616438356, 221.897260274, 218.9383561644);
  color: rgb(190.9931506849, 39.1780821918, 23.5068493151);
  border-left: 4px solid #e74c3c;
}

.site-header {
  background-color: #1a252f;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-header .brand-name {
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .site-header .brand-name {
    margin-bottom: 0;
  }
}
.site-header .brand-name strong {
  color: #3498db;
}
.site-header .main-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .site-header .main-nav {
    gap: 25px;
  }
}
.site-header .main-nav a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.95rem;
}
.site-header .main-nav a:hover {
  color: #ffffff;
}

.hero-section {
  background: linear-gradient(135deg, #1a252f 0%, rgb(7.8356164384, 11.1506849315, 14.1643835616) 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 100px 0;
  }
}
.hero-section h1 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 2.6rem;
  }
}
.hero-section h1 .highlight {
  color: #3498db;
}
.hero-section .lead {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 35px auto;
  color: #ecf0f1;
}
@media (min-width: 768px) {
  .hero-section .lead {
    font-size: 1.25rem;
  }
}
.hero-section .cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .hero-section .cta-group {
    flex-direction: row;
    justify-content: center;
  }
}
.hero-section .cta-group .btn-link {
  color: #ffffff;
  text-decoration: none;
}
.hero-section .cta-group .btn-link:hover {
  text-decoration: underline;
}

.services-section {
  padding: 60px 0;
  background-color: #f4f6f9;
}
@media (min-width: 768px) {
  .services-section {
    padding: 80px 0;
  }
}
.services-section .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .services-section .section-title {
    font-size: 2.2rem;
  }
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 768px) {
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-section .service-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border-top: 4px solid #1a252f;
}
.services-section .service-card h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.about-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.about-section .about-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.about-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.about-section .quote {
  font-style: italic;
  font-size: 1.1rem;
  border-left: 4px solid #3498db;
  padding-left: 15px;
  margin-bottom: 20px;
  color: rgb(71.1451612903, 100.25, 129.3548387097);
}

.contact-section {
  padding: 60px 0;
  background-color: #f4f6f9;
  text-align: center;
}
.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.contact-section .contact-form {
  max-width: 600px;
  margin: 30px auto 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  text-align: left;
}
@media (min-width: 768px) {
  .contact-section .contact-form {
    padding: 40px;
  }
}
.contact-section .form-group {
  margin-bottom: 20px;
}
.contact-section .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.contact-section .form-group input, .contact-section .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdde1;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-section .form-group input:focus, .contact-section .form-group textarea:focus {
  outline: none;
  border-color: #3498db;
}
.contact-section .btn-submit {
  background-color: #1a252f;
  color: #ffffff;
  width: 100%;
  font-size: 1rem;
  margin-top: 10px;
}
.contact-section .btn-submit:hover {
  background-color: rgb(44.1643835616, 62.8493150685, 79.8356164384);
}

.site-footer {
  background-color: #1a252f;
  color: #bdc3c7;
  padding: 35px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 3px solid #3498db;
}
.site-footer p {
  margin-bottom: 8px;
}
.site-footer .footer-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

/*# sourceMappingURL=style.css.map */
