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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #c0d0da;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2e3a;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

h1 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

p {
  margin-bottom: 1.5rem;
  color: #c0d0da;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: #c0d0da;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background-color: #10b981;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #059669;
  color: #ffffff;
}
.btn--secondary {
  background-color: #1a2e3a;
  color: #ffffff;
}
.btn--secondary:hover {
  background-color: #0f1e2a;
  color: #ffffff;
}
.btn--outline {
  background-color: transparent;
  color: #10b981;
  border: 2px solid #10b981;
}
.btn--outline:hover {
  background-color: #10b981;
  color: #ffffff;
}
.btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}
.btn--small {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a3f4d;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
  border-color: #10b981;
}
.card__header {
  margin-bottom: 1.5rem;
}
.card__title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.card__body {
  color: #c0d0da;
}
.card__footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2a3f4d;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
}
.hero {
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 700px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .hero__container {
    padding: 0 2rem;
  }
}
.hero__container {
  padding: 0;
  position: relative;
  z-index: 2;
}
.hero__content {
  max-width: 800px;
  margin: 0 auto;
}
.hero__headline {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .hero__headline {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero__headline {
    font-size: 2.5rem;
  }
}
.hero__subheadline {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .hero__subheadline {
    font-size: 1.25rem;
  }
}
.hero__image {
  margin: 2rem auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.hero__cta {
  margin-top: 2rem;
}
@media (min-width: 1920px) {
  .hero {
    margin-top: 900px;
  }
}
@media (min-width: 2560px) {
  .hero {
    margin-top: 1200px;
  }
}

.video-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.video-hero__video {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 120%;
  height: 100vh;
  min-height: 100vh;
  object-fit: cover;
  object-position: center 40%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.video-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 10, 13, 0.5) 0%, rgba(10, 20, 25, 0.4) 50%, rgba(26, 46, 58, 0.3) 100%);
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 1000px;
  }
}

.section {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}
.section {
  position: relative;
  z-index: 1;
}

.section--dark {
  color: #ffffff;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5, .section--dark h6 {
  color: #ffffff;
}
.section--dark p {
  color: #c0d0da;
}

.section--light h1, .section--light h2, .section--light h3, .section--light h4, .section--light h5, .section--light h6 {
  color: #ffffff;
}
.section--light p {
  color: #c0d0da;
}

.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 1.5rem;
}

.mt-lg {
  margin-top: 2rem;
}

.mt-xl {
  margin-top: 3rem;
}

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-lg {
  margin-bottom: 2rem;
}

.mb-xl {
  margin-bottom: 3rem;
}

.p-sm {
  padding: 1rem;
}

.p-md {
  padding: 1.5rem;
}

.p-lg {
  padding: 2rem;
}

.p-xl {
  padding: 3rem;
}

.header {
  background-color: rgba(10, 20, 25, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #2a3f4d;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .header__container {
    padding: 0 2rem;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
@media (min-width: 768px) {
  .header__container {
    padding: 0;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .header__logo {
    padding-left: 2rem;
  }
}
.header__logo img {
  height: 70px;
  width: auto;
}
@media (min-width: 768px) {
  .header__logo img {
    height: 85px;
  }
}
@media (min-width: 1024px) {
  .header__logo img {
    height: 100px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
    gap: 2rem;
  }
}
.header__nav-link {
  color: #c0d0da;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.header__nav-link:hover {
  color: #34d399;
  background-color: rgba(16, 185, 129, 0.2);
}
.header__nav-link--active {
  color: #34d399;
  font-weight: 600;
}
.header__menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #c0d0da;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .header__menu-toggle {
    display: none;
  }
}
.header__mobile-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #0a1419;
  border-top: 1px solid #2a3f4d;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .header__mobile-nav {
    display: none;
  }
}
.header__mobile-nav--open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header__mobile-nav .header__nav-link {
  display: block;
  padding: 1rem;
  margin-bottom: 0.5rem;
}

.footer {
  background-color: rgba(5, 10, 13, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #2a3f4d;
  color: #ffffff;
  padding: 3rem 0 2rem;
  position: relative;
  z-index: 1;
}
.footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 0 2rem;
  }
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__section h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.footer__section p, .footer__section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer__section a {
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.footer__section a:hover {
  color: #34d399;
}
.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer__logo img {
  height: 60px;
  width: auto;
}
@media (min-width: 768px) {
  .footer__logo img {
    height: 70px;
  }
}
@media (min-width: 1024px) {
  .footer__logo img {
    height: 80px;
  }
}
.footer__social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.footer__social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer__social a:hover {
  background-color: #10b981;
  transform: translateY(-2px);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(26, 46, 58, 0.9);
  backdrop-filter: blur(5px);
  border: 1px solid #2a3f4d;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.contact-form__group {
  margin-bottom: 2rem;
}
.contact-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 1rem;
  background-color: #0f1e2a;
  border: 2px solid #2a3f4d;
  border-radius: 4px;
  font-size: 1rem;
  color: #c0d0da;
  transition: all 0.3s ease;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  background-color: #1a2e3a;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #a0b0ba;
}
.contact-form__textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form__error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}
.contact-form__error--show {
  display: block;
}
.contact-form__submit {
  width: 100%;
  margin-top: 1.5rem;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
}

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