:root {
  --primary: #111111;
  --secondary: #3a86ff;
  --accent: #4cc9f0;
  --light: #f8f9fa;
  --dark: #111111;
  --gray: #6c757d;
  --success: #28a745;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
    font-weight: 500;
}
body {
  color: var(--dark);
  line-height: 1.6;
  background-color: #111111;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color:#071924;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn:hover {
  background-color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  
}
.btn-outline:hover {
  background-color: white;
  color: var(--primary);
}
section {
  padding: 100px 0;
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.highlight {
  font-style: italic;
  color: #aaa;
}

.section-description {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #ccc;
}
.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgb(0 0 0) 0%, rgb(0 0 0 / 0%) 100%);
	 
}

.hidden{
	display:none;
}

.hidden.active{
	display:block;
}

.separator {
    font-size: 12px;
    color: #666;
  }
  
  button {
    background-color: #071924; 
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 25px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
  }

  button:hover {
    color: black;
    background-color: white;
  }
  
  @media (max-width: 768px) {
     
    button {
      border-radius: 4px;
      
      padding: 14px 20px;
    }
  }
  
    
  html {
    scroll-behavior: smooth;
  }
  
  .scrollerer{
	  scroll-margin-top: 100px;
  }
  
  
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 25%;
}
.section-header p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
    display: flex;
    margin-bottom: 15px;
  }

  input[type="email"] {
    flex: 1;
    padding: 14px 20px;
     
    border-radius: 4px 0 0 4px;
    font-size: 16px;
  }
  
  
  @media (max-width: 768px) {
    .form-group {
      flex-direction: column;
    }

    input[type="email"] {
      border-radius: 4px;
      margin-bottom: 10px;
    }
  }
  
  .arrow {
    margin-left: 8px;
  }