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

.success__text {
  margin-bottom: 27px;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
  color: #353535;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #ffffff;
}

.policy__title {
  color: #ffffff;

}

.policy__text h2 {
  text-align: left;
  font-size: 21px;
}

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

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

.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;
}

:root {
  --primary-bg: #2c3e50;
  --secondary-bg: #34495e;
  --dark-bg: #1a252f;
  --text-primary: #ffffff;
  --text-secondary: #ecf0f1;
  --accent-primary: #1abc9c;
  --accent-secondary: #3498db;
  --gradient: linear-gradient(135deg, #1abc9c 0%, #3498db 100%);
  --border-radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-bg);
  z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar {
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

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

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--accent-primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-popup-content {
  background: var(--secondary-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow);
}

.cookie-popup-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cookie-popup-content p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--accent-primary);
  color: white;
}

.btn-primary:hover {
  background: #16a085;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--text-secondary);
}

.btn-secondary:hover {
  background: var(--text-secondary);
  color: var(--primary-bg);
}

.btn-gradient {
  background: var(--gradient);
  color: white;
  border: none;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 188, 156, 0.3);
}

/* Hero Section */
.hero {
  padding: 100px 0 80px !important;
  background: 
              url('../img/bg.png') center / cover no-repeat;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--secondary-bg);
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.services p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.service-lines {
  margin-top: 3rem;
}

.service-lines h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--accent-primary);
}

.service-lines ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-lines li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
}

.service-lines li::before {
  content: "•";
  color: var(--accent-primary);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

/* Industries Section */
.industries {
  padding: 80px 0;
  background: var(--primary-bg);
}

.industries h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.industries > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.industries h3 {
  font-size: 1.8rem;
  margin: 3rem 0 2rem;
  color: var(--accent-primary);
}

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

.industry-card {
  background: var(--secondary-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.industry-content {
  padding: 1.5rem;
}

.industry-content h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.industry-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Process Section */
.process {
  padding: 80px 0;
  background: var(--secondary-bg);
}

.process h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}

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

.process-step {
  background: var(--primary-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-3px);
}

.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Capability Building */
.capability-building {
  padding: 80px 0;
  background: var(--primary-bg);
}

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

.capability-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.capability-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.capability-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

/* Principles */
.principles {
  padding: 80px 0;
  background: var(--secondary-bg);
}

.principles h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}

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

.principle-card {
  background: var(--primary-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.principle-card:hover {
  transform: translateY(-3px);
}

.principle-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.principle-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Leadership */
.leadership {
  padding: 80px 0;
  background: var(--primary-bg);
}

.leadership h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.leadership > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

.feature {
  background: var(--secondary-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.feature p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.leadership-image {
  margin-top: 2rem;
  text-align: center;
}

.leadership-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
}

/* Collaboration */
.collaboration {
  padding: 80px 0;
  background: var(--secondary-bg);
}

.collaboration h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}

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

.collaboration-item {
  background: var(--primary-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.collaboration-item:hover {
  transform: translateY(-3px);
}

.collaboration-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.collaboration-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.collaboration .btn {
  display: block;
  margin: 0 auto;
}

/* Working With */
.working-with {
  padding: 80px 0;
  background: var(--primary-bg);
}

.working-with h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.working-with > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.working-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-tag {
  background: var(--secondary-bg);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  color: var(--text-primary);
  border: 2px solid var(--accent-primary);
}

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

.working-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
}

/* Why Teaming */
.why-teaming {
  padding: 80px 0;
  background: var(--secondary-bg);
}

.why-teaming h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}

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

.value-card {
  background: var(--primary-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-teaming .btn {
  display: block;
  margin: 0 auto;
}

/* Managers Help */
.managers-help {
  padding: 80px 0;
  background: var(--primary-bg);
}

.managers-help h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}

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

.help-card {
  background: var(--secondary-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.help-card:hover {
  transform: translateY(-3px);
}

.help-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.help-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  padding: 100px 0 !important;
  background: var(--secondary-bg);
}

.contact-form h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact-form > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.office {
  background: var(--primary-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.office h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.office p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-fields input,
.contact-form-fields textarea {
  padding: 1rem;
  border: none;
  border-radius: var(--border-radius);
  background: var(--primary-bg);
  color: var(--text-primary);
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: var(--transition);
}

.contact-form-fields input:focus,
.contact-form-fields textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.contact-form-fields input::placeholder,
.contact-form-fields textarea::placeholder {
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  padding: 60px 0 30px;
}

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

.footer-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--accent-primary);
}

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

.footer-office h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-office p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.footer-bottom {
  border-top: 1px solid var(--secondary-bg);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--primary-bg);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: none;
    transition: var(--transition);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .footer-offices {
    grid-template-columns: 1fr;
  }

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

  .working-features {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  section {
    padding: 60px 0 !important;
  }

  h2 {
    font-size: 2rem !important;
  }

  .cookie-popup {
    padding: 1rem;
  }

  .cookie-popup-content {
    padding: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}
