/* Main Styles */
:root {
  --background: #1C1C1E;
  --accent: #00CED1;
  --secondary: #FF5E3A;
  --text-primary: #FFFFFF;
  --text-secondary: #D3D3D3;
  --button: #9D4EDD;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
}

section[id] {
  scroll-margin-top: 40px;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: var(--accent);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

button, .btn {
  background-color: var(--button);
  color: var(--text-primary);
  border: none;
  padding: 12px 25px;
  border-radius: 2rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  font-weight: bold;
}

button:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-primary);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(28, 28, 30, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--text-primary);
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent);
  transition: var(--transition);
}

nav ul li a:hover:after {
  width: 100%;
}

/* Hamburger Menu CSS-only */
.hamburger-checkbox {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  nav ul {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: rgba(28, 28, 30, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: var(--transition);
  }
  
  .hamburger-checkbox:checked ~ ul {
    left: 0;
  }
  
  nav ul li {
    margin: 15px 0;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: var(--accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* About Section */
.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Benefits Section */
.benefit-card {
  background: linear-gradient(145deg, #232327, #1a1a1c);
  border-radius: 2rem;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Services Section */
.service-card {
  background: linear-gradient(145deg, #232327, #1a1a1c);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 15px;
  color: var(--accent);
}

/* Cases Section */
.case-card {
  background: linear-gradient(145deg, #232327, #1a1a1c);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-content {
  padding: 25px;
}

/* Steps Section */
.step-card {
  background: linear-gradient(145deg, #232327, #1a1a1c);
  border-radius: 2rem;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: bold;
  color: rgba(157, 78, 221, 0.2);
}

/* Team Section */
.team-card {
  background: linear-gradient(145deg, #232327, #1a1a1c);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-content h3 {
  margin-bottom: 10px;
}

.team-position {
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-info {
  background: linear-gradient(145deg, #232327, #1a1a1c);
  border-radius: 2rem;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  color: var(--accent);
  font-size: 1.5rem;
  margin-right: 15px;
}

/* Form Section */
.form-container {
  background: linear-gradient(145deg, #232327, #1a1a1c);
  border-radius: 2rem;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

select.form-control option {
  background-color: white;
  color: #1C1C1E;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

/* Thank You Page */
.thank-you-container {
  margin: 8rem auto 5rem;
  max-width: 600px;
  background: linear-gradient(145deg, #232327, #1a1a1c);
  border-radius: 2rem;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 2px solid var(--accent);
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Policy Pages */
.policy-container {
  margin: 8rem auto 5rem;
  max-width: 800px;
  background: linear-gradient(145deg, #232327, #1a1a1c);
  border-radius: 2rem;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent);
}

.policy-container h1 {
  margin-bottom: 30px;
  text-align: center;
}

.policy-container h2 {
  margin: 30px 0 15px;
  color: var(--accent);
}

.policy-container p {
  margin-bottom: 20px;
}

.policy-container ul {
  margin: 20px 0;
  padding-left: 20px;
}

.policy-container ul li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: rgba(20, 20, 22, 0.8);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(145deg, #232327, #1a1a1c);
  padding: 20px;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--accent);
}

.cookie-text {
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .policy-container,
  .form-container,
  .thank-you-container {
    padding: 25px;
  }
}