.policy,
.success {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 32px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 32px;
}

.policy__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-inline: 20px;
}

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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #1a1f2e;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  color: #00d4aa;
}

h2 {
  font-size: 2.5rem;
  color: #ffffff;
}

h3 {
  font-size: 1.5rem;
  color: #ffffff;
}

h4 {
  font-size: 1.2rem;
  color: #ffffff;
}

p {
  color: #b0b8c8;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #00d4aa;
  color: #1a1f2e;
  border-color: #00d4aa;
}

.btn-primary:hover {
  background-color: transparent;
  color: #00d4aa;
  border-color: #00d4aa;
}

.btn-secondary {
  background-color: transparent;
  color: #00d4aa;
  border-color: #00d4aa;
}

.btn-secondary:hover {
  background-color: #00d4aa;
  color: #1a1f2e;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2a3144;
  border: 1px solid #00d4aa;
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-popup p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border: 1px solid #00d4aa;
  border-radius: 5px;
  background-color: transparent;
  color: #00d4aa;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: #00d4aa;
  color: #1a1f2e;
}

.cookie-btn:hover {
  background-color: #00d4aa;
  color: #1a1f2e;
}

.cookie-btn.accept:hover {
  background-color: transparent;
  color: #00d4aa;
}

/* Header */
.header {
  background-color: #1a1f2e;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #2a3144;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: #00d4aa;
  font-size: 1.5rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: #b0b8c8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #00d4aa;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #00d4aa;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #1a1f2e;
  border-bottom: 1px solid #2a3144;
  padding: 1rem 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 1rem;
  text-align: center;
}

.mobile-nav-list a {
  color: #b0b8c8;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
  color: #00d4aa;
}

/* Main Content */
main {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #2a3144 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #b0b8c8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: #00d4aa;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background-color: #1a1f2e;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #2a3144;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: #00d4aa;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-card p {
  color: #b0b8c8;
}

/* Approach Section */
.approach {
  padding: 4rem 0;
  background-color: #1a1f2e;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.approach-card {
  text-align: center;
  padding: 2rem;
}

.approach-icon {
  width: 80px;
  height: 80px;
  background-color: #00d4aa;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-icon img {
  width: 40px;
  height: 40px;
}

.approach-card h3 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.approach-card p {
  color: #b0b8c8;
}

/* Projects Section */
.projects {
  padding: 4rem 0;
  background-color: #1a1f2e;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.project-card {
  background-color: #2a3144;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 170, 0.1);
}

.project-image {
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.project-content p {
  margin-bottom: 1.5rem;
  color: #b0b8c8;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background-color: #00d4aa;
  color: #1a1f2e;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background-color: #1a1f2e;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: #2a3144;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #00d4aa;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background-color: #00d4aa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1f2e;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-info h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.testimonial-info p {
  color: #b0b8c8;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  color: #b0b8c8;
  font-style: italic;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background-color: #1a1f2e;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
  color: #ffffff;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: #00d4aa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 20px;
  height: 20px;
}

.contact-details span {
  color: #00d4aa;
  font-weight: 500;
  display: block;
}

.contact-details p {
  color: #b0b8c8;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background-color: #2a3144;
  padding: 2rem;
  border-radius: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #b0b8c8;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #3a4556;
  border-radius: 5px;
  background-color: #1a1f2e;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4aa;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
}

/* Footer */
.footer {
  background-color: #0f1419;
  padding: 3rem 0 1rem;
  border-top: 1px solid #2a3144;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-company h3 {
  color: #00d4aa;
  margin-bottom: 1rem;
}

.footer-company p {
  color: #b0b8c8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #2a3144;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #00d4aa;
}

.social-links img {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #b0b8c8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #00d4aa;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #2a3144;
}

.footer-bottom p {
  color: #b0b8c8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cookie-popup {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-card,
  .approach-card {
    padding: 1.5rem;
  }

  .project-content {
    padding: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

/* Smooth scrolling offset for fixed header */
section {
  scroll-margin-top: 80px;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.approach-card,
.project-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
  border-color: #ff6b6b;
}

.form-group input:valid,
.form-group textarea:valid {
  border-color: #00d4aa;
}

/* Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #00d4aa;
  outline-offset: 2px;
}

/* Utility classes */
.text-center {
  text-align: center;
}

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

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

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

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