*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Krub", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}

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

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

a:hover {
  color: #b71c1c;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: #333333;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0);
  border-color: #c7c7c7;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #b71c1c;
  color: white;
  border: 2px solid #b71c1c;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #8b1515;
  border-color: #8b1515;
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: #333333;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: rgba(0, 0, 0, 0);
  border-color: #c7c7c7;
}

.btn-outline:hover {
  background-color: #f5f5f5;
}

.btn-full {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 4rem 0;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f0f9ff;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-popup .cookie-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  padding: 20px;
  text-align: center;
  max-width: 600px;
}

.cookie-popup .cookie-content .cookie-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
}

.cookie-popup .cookie-content h3 {
  color: #212121;
  margin-bottom: 10px;
}

.cookie-popup .cookie-content p {
  margin-bottom: 15px;
  font-size: 14px;
}

.cookie-popup .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.cookie-popup .cookie-content .cookie-buttons button {
  min-width: 180px;
}

.header {
  background-color: #212121;
  color: white;
  padding: 1rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.header .logo:hover {
  color: #e0e0e0;
}

.header .nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1.5rem;
}

.header .nav .nav-list a {
  color: white;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.header .nav .nav-list a:hover, .header .nav .nav-list a.active {
  color: #e0e0e0;
}

.header .nav .nav-list a:hover::after, .header .nav .nav-list a.active::after {
  width: 100%;
}

.header .nav .nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e0e0e0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.header .mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .header .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #212121;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 200;
  }
  .header .nav.active {
    right: 0;
  }
  .header .nav .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 5rem 2rem;
    gap: 2rem;
  }
  .header .nav .nav-list a {
    font-size: 1.2rem;
  }
  .header .mobile-menu-toggle {
    display: block;
    z-index: 300;
  }
  .header .mobile-menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 6px);
            transform: rotate(45deg) translate(5px, 6px);
  }
  .header .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .header .mobile-menu-toggle.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(7px, -8px);
            transform: rotate(-45deg) translate(7px, -8px);
  }
}

.hero {
  background-image: url("./assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.7);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero .hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero .hero-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.about {
  background-color: #f5f5f5;
}

.about .about-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 3rem;
}

.about .about-grid .about-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about .about-grid .about-content h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about .about-grid .about-content p {
  margin-bottom: 2rem;
}

.about .about-grid .about-images {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.about .about-grid .about-images .image-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 0.5rem);
          flex: 0 0 calc(50% - 0.5rem);
}

.about .about-grid .about-images .image-wrapper img {
  border-radius: 4px;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-map {
  background-color: white;
}

.contact-map .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 3rem;
}

.contact-map .map-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-map .map-content h2 {
  text-align: left;
}

.contact-map .map-content .contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-map .map-content .contact-details .contact-location {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
}

.contact-map .map-content .contact-details .contact-location h3 {
  margin-bottom: 1rem;
  color: #b71c1c;
}

.contact-map .map-content .contact-details .contact-location p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-map .map-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 300px;
}

.contact-map .map-container .map-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services {
  background-color: #f5f5f5;
}

.services .services-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.services .services-grid .service-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
  background-color: white;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .services-grid .service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.services .services-grid .service-card .service-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.services .services-grid .service-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: #212121;
}

.services .services-grid .service-card p {
  padding: 0 1.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.services .services-grid .service-card p:last-child {
  padding-bottom: 1.5rem;
}

.services .services-cta {
  text-align: center;
  margin-top: 3rem;
}

.process {
  background-color: white;
}

.process .process-list {
  margin-top: 3rem;
}

.process .process-list .process-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.process .process-list .process-item:last-child {
  margin-bottom: 0;
}

.process .process-list .process-item .process-number {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  width: 80px;
  height: 80px;
  background-color: #b71c1c;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.process .process-list .process-item .process-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.process .process-list .process-item .process-content h3 {
  color: #212121;
  margin-bottom: 0.5rem;
}

.strategy {
  background-color: #f5f5f5;
}

.strategy .strategy-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.strategy .strategy-grid .strategy-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
  background-color: white;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.strategy .strategy-grid .strategy-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.strategy .strategy-grid .strategy-card h3 {
  color: #b71c1c;
  margin-bottom: 1rem;
}

.strategy .strategy-grid .strategy-card p {
  font-size: 0.95rem;
}

.strategy .strategy-cta {
  text-align: center;
  margin-top: 3rem;
}

.why-us {
  background-color: white;
}

.why-us .why-us-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 3rem;
}

.why-us .why-us-grid .why-us-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.why-us .why-us-grid .why-us-content h2 {
  text-align: left;
}

.why-us .why-us-grid .why-us-content .why-us-list {
  margin-top: 2rem;
}

.why-us .why-us-grid .why-us-content .why-us-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.why-us .why-us-grid .why-us-content .why-us-list li .icon {
  font-size: 1.5rem;
  color: #b71c1c;
}

.why-us .why-us-grid .why-us-content .why-us-list li div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.why-us .why-us-grid .why-us-content .why-us-list li div h3 {
  margin-bottom: 0.5rem;
  color: #212121;
}

.why-us .why-us-grid .why-us-content .why-us-list li div p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.why-us .why-us-grid .why-us-content .why-us-cta {
  margin-top: 2rem;
}

.why-us .why-us-grid .why-us-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.why-us .why-us-grid .why-us-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact {
  background-color: #f5f5f5;
}

.contact .contact-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 3rem;
  margin-top: 3rem;
}

.contact .contact-grid .contact-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact .contact-grid .contact-info .contact-methods {
  margin-top: 2rem;
}

.contact .contact-grid .contact-info .contact-methods .contact-method {
  margin-bottom: 1.5rem;
}

.contact .contact-grid .contact-info .contact-methods .contact-method h3 {
  margin-bottom: 0.5rem;
  color: #b71c1c;
}

.contact .contact-grid .contact-form-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact .contact-grid .contact-form-container .contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.contact .contact-grid .contact-form-container .contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact .contact-grid .contact-form-container .contact-form .form-group input, .contact .contact-grid .contact-form-container .contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Krub", sans-serif;
  font-size: 1rem;
}

.contact .contact-grid .contact-form-container .contact-form .form-group input:focus, .contact .contact-grid .contact-form-container .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #b71c1c;
}

.contact .contact-grid .contact-form-container .contact-form .form-group.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}

.contact .contact-grid .contact-form-container .contact-form .form-group.checkbox-group input {
  width: auto;
  margin-top: 3px;
}

.contact .contact-grid .contact-form-container .contact-form .form-group.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.contact .contact-grid .contact-form-container .contact-form .form-group.checkbox-group label a {
  color: #b71c1c;
  text-decoration: underline;
}

.success-section {
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  text-align: center;
  padding: 5rem 0;
}

.success-section .success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-section .success-content h1 {
  color: #b71c1c;
  margin-bottom: 2rem;
}

.success-section .success-content p {
  margin-bottom: 1.5rem;
}

.success-section .success-content .success-action {
  margin-top: 3rem;
}

.footer {
  background-color: #212121;
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-content .footer-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer .footer-content .footer-logo a:hover {
  color: #e0e0e0;
}

.footer .footer-content .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2rem;
}

.footer .footer-content .footer-links a {
  color: #e0e0e0;
}

.footer .footer-content .footer-links a:hover {
  color: white;
}

.footer .footer-copyright {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.contact-page {
  padding: 5rem 0;
  background-color: white;
}

.contact-page h1 {
  text-align: center;
  margin-bottom: 3rem;
  color: #212121;
}

.contact-page .contact-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 3rem;
}

.contact-page .contact-grid .contact-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-page .contact-grid .contact-info .contact-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-page .contact-grid .contact-info .office-locations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2rem;
}

.contact-page .contact-grid .contact-info .office-locations .office h3 {
  color: #b71c1c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-page .contact-grid .contact-info .office-locations .office p {
  margin-bottom: 0.5rem;
}

.contact-page .contact-grid .contact-info .office-locations .office p:last-child {
  margin-bottom: 0;
}

.contact-page .contact-grid .contact-form-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-page .contact-grid .contact-form-container .contact-form {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group input, .contact-page .contact-grid .contact-form-container .contact-form .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Krub", sans-serif;
  font-size: 1rem;
  background-color: white;
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group input:focus, .contact-page .contact-grid .contact-form-container .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #b71c1c;
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group input::-webkit-input-placeholder, .contact-page .contact-grid .contact-form-container .contact-form .form-group textarea::-webkit-input-placeholder {
  color: #757575;
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group input:-ms-input-placeholder, .contact-page .contact-grid .contact-form-container .contact-form .form-group textarea:-ms-input-placeholder {
  color: #757575;
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group input::-ms-input-placeholder, .contact-page .contact-grid .contact-form-container .contact-form .form-group textarea::-ms-input-placeholder {
  color: #757575;
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group input::placeholder, .contact-page .contact-grid .contact-form-container .contact-form .form-group textarea::placeholder {
  color: #757575;
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group.checkbox-group input {
  width: auto;
  margin-top: 3px;
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group.checkbox-group label {
  font-size: 0.9rem;
}

.contact-page .contact-grid .contact-form-container .contact-form .form-group.checkbox-group label a {
  color: #b71c1c;
  text-decoration: underline;
}

.contact-page .contact-grid .contact-form-container .contact-form button {
  padding: 15px;
}

@media (max-width: 992px) {
  .contact-page .contact-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-page .contact-grid .contact-info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .contact-page .contact-grid .contact-info .office-locations {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact-page .contact-grid .contact-info .office-locations .office {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 250px;
  }
  .contact-page .contact-grid .contact-form-container {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .about .about-grid,
  .contact-map .container,
  .why-us .why-us-grid,
  .contact .contact-grid,
  .about-hero .about-hero-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-grid .about-images,
  .about-hero .about-hero-grid .about-hero-image {
    margin-top: 0;
    margin-bottom: 2rem;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .about-strategy .strategy-cards,
  .about-services .services-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .why-us .why-us-grid .why-us-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer .footer-content .footer-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .hero {
    padding: 4rem 0;
  }
  .services .services-grid,
  .strategy .strategy-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .process .process-item,
  .about-process .process-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .process .process-item .process-number,
  .process .process-item .step-number,
  .about-process .process-step .process-number,
  .about-process .process-step .step-number {
    margin: 0 auto;
  }
  .process .process-item:not(:last-child)::after,
  .about-process .process-step:not(:last-child)::after {
    left: 50%;
    top: 80px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 80px);
  }
  .cookie-popup .cookie-content .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .about .about-grid .about-images .image-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .contact-map .map-content .contact-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*# sourceMappingURL=style__con.css.map */