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

body {
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  background-color: rgba(253, 253, 253, 1);
}

.website {
  width: 100%;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 32px 80px 60px;
  align-items: stretch;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.main-header {
  position: relative;
  border-radius: 16px;
  background-color: rgba(216, 102, 77, 1);
  display: flex;
  width: 100%;
  padding: 17px 0;
  flex-direction: column;
  align-items: stretch;
  color: rgba(255, 255, 255, 1);
  justify-content: center;
}

.header-container {
  border-radius: 8px;
  display: flex;
  width: 100%;
  padding: 0 20px;
  align-items: center;
  gap: 40px 100px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  align-self: stretch;
  min-width: 240px;
  margin: auto 0;
  min-height: 44px;
  padding: 9px 8px;
  font-family:
    "Archivo",
    -apple-system,
    sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: unset;
  color: #fff;
}

.menu-items {
  border-radius: 60px;
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  padding: 8px 0;
  align-items: center;
  gap: 8px;
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  justify-content: center;
}

.menu-item {
  border-radius: 4px;
  align-self: stretch;
  margin: auto 0;
  min-height: 40px;
  padding: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
}

.menu-item:hover {
  opacity: 0.7;
}

.menu-item-highlighted {
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 1);
  border: 2px solid rgba(216, 102, 77, 1);
  padding: 16px 40px;
  color: rgba(244, 88, 54, 1);
}

.menu-item-highlighted:hover {
  background-color: rgba(216, 102, 77, 1);
  color: white;
}


.cookie-button:hover {
  background-color: rgba(216, 102, 77, 1);
  color: white;
}
.hero-content {
  position: relative;
  display: flex;
  margin-top: 60px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  text-align: center;
  justify-content: center;
}

.content-container {
  justify-content: center;
  align-items: stretch;
  display: flex;
  width: 100%;
  flex-direction: column;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
}

.content-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.hero-title {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.64px;
  margin-top: 24px;
}

.hero-description {
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.44px;
  margin-top: 24px;
}

.cta-button {
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 1);
  border: 2px solid rgba(216, 102, 77, 1);
  align-self: center;
  display: flex;
  margin-top: 40px;
  padding: 16px 40px;
  flex-direction: column;
  align-items: stretch;
  font-size: 20px;
  color: rgba(216, 102, 77, 1);
  font-weight: 600;
  letter-spacing: -0.4px;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.cta-button:hover {
  background-color: rgba(216, 102, 77, 1);
  color: white;
}

/* Stats Section */
.stats-section {
  background-color: rgba(216, 102, 77, 1);
  display: flex;
  width: 100%;
  padding: 40px 80px;
  align-items: stretch;
  gap: 40px;
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  font-weight: 400;
  text-align: center;
  justify-content: start;
  flex-wrap: wrap;
}

.stat-card {
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 1);
  border: 2px solid rgba(216, 102, 77, 1);
  display: flex;
  min-width: 240px;
  padding: 24px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.stat-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 50px;
  align-self: center;
  overflow: hidden;
}

.stat-number {
  color: rgba(30, 30, 30, 1);
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1.2px;
  margin-top: 16px;
}

.stat-description {
  color: rgba(43, 32, 29, 1);
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
  margin-top: 16px;
}

/* About Section */
.about-section {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  width: 100%;
  padding: 60px 0;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  justify-content: center;
}

.section-container {
  width: 100%;
  padding: 0 80px;
}

.section-header {
  width: 100%;
  font-size: 40px !important;
  color: rgba(30, 30, 30, 1);
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1;
}

.section-title {
  width: 100%;
  gap: 8px;
}

.about-content {
  display: flex;
  margin-top: 24px;
  width: 100%;
  align-items: stretch;
  gap: 32px;
  font-size: 20px;
  color: rgba(123, 123, 123, 1);
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 30px;
  justify-content: start;
  flex-wrap: wrap;
}

.about-image {
  
  object-fit: cover;
  object-position: center;
  width: 100%;
  border-radius: 16px;
  min-width: 240px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  overflow: hidden;
}

.about-text {
  display: flex;
  min-width: 240px;
  margin: auto 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Why Provia Section */
.why-section {
  background-color: rgba(216, 102, 77, 1);
  display: flex;
  width: 100%;
  padding: 60px 0;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  color: rgba(255, 255, 255, 1);
  justify-content: center;
}

.why-content {
  margin-top: 24px;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 30px;
}

.why-text {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: start;
}

.why-text p {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  margin-bottom: 20px;
}

.why-text p:last-child {
  margin-bottom: 0;
}

/* Advantages Section */
.advantages-section {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  width: 100%;
  padding: 60px 0;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  justify-content: center;
}

.advantages-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  width: 100%;
  align-items: stretch;
  gap: 32px;
  font-size: 20px;
  color: rgba(123, 123, 123, 1);
  letter-spacing: -0.4px;
 
}

.advantages-list {
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 1);
  min-width: 240px;
  margin: auto 0;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.advantages-wrapper {
  width: 100%;
}

.advantage-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 16px 0;
}

.advantage-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.advantage-description {
  font-weight: 400;
  line-height: 30px;
}

.divider {
  border: 0;
  border-top: 2px solid rgba(216, 102, 77, 0.4);
  margin: 0;
  width: 100%;
}

.advantages-block {
  position: relative;
  width: 100%;
  height: 100%;
}

.advantages-image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* Services Section */
.services-section {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  width: 100%;
  padding: 60px 0;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  justify-content: center;
}

.services-content {
  margin-top: 40px;
  width: 100%;
  font-size: 20px;
  color: rgba(123, 123, 123, 1);
  letter-spacing: 0.4px;
}

.services-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.services-row {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 40px;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.service-item {
  min-width: 240px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  margin-bottom: 16px;
}

.service-title {
  width: 100%;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.service-description {
  font-weight: 400;
  line-height: 26px;
}

.service-divider {
  border: 0;
  border-top: 2px solid rgba(216, 102, 77, 0.4);
  margin: 16px 0 0 0;
  width: 100%;
}

/* Contact Section */
.contact-section {
  display: flex;
  width: 100%;
  padding: 60px 80px;
  flex-direction: column;
  align-items: stretch;
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  justify-content: center;
}

.contact-intro {
  width: 100%;
}

.contact-title {
  color: rgba(30, 30, 30, 1);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.8px;
}

.contact-description {
  color: rgba(123, 123, 123, 1);
  font-size: 22px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.44px;
  margin-top: 16px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  margin-top: 40px;
  width: 100%;
  
  gap: 32px;
  font-weight: 400;
 
}

.contact-image {
  height: 100%;
  min-width: 240px;
  position: relative;
}

.contact-image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  
  
  border-radius: 16px;
  overflow: hidden;
}

.contact-form {
  justify-content: center;
  align-items: start;
  border-radius: 16px;
  background-color: #d8664d;
  display: flex;
  min-width: 240px;
  padding: 40px;
  gap: 64px;
  width: 490px;
  flex-shrink: 0;
  height: max-content;
}

.form-container {
  width: 100%;
}

.form-fields {
  width: 100%;
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
  letter-spacing: -0.28px;
  line-height: 1.4;
}

.input-field {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-bottom: 16px;
}

.input-wrapper {
  align-items: center;
  border-radius: 16px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  width: 100%;
  padding: 12px 16px;
}

.input-label {
  color: white;
  flex: 1;
}

.input-control {
  background: transparent;
  border: none;
  color: white;
  width: 100%;
  outline: none;
  padding: 4px;
}

.send-button {
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  background-color: #fff;
  display: flex;
  margin-top: 24px;
  width: 100%;
  padding: 12px 32px;
  font-size: 16px;
  color: rgba(30, 30, 30, 1);
  letter-spacing: -0.32px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.send-button:hover {
  background-color: rgba(216, 102, 77, 1);
  color: white;
}

/* Footer */
.site-footer {
  background-color: rgba(43, 32, 29, 1);
  display: flex;
  width: 100%;
  padding: 32px 80px;
  flex-direction: column;
  align-items: stretch;
  font-family:
    "Montserrat",
    -apple-system,
    sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
  justify-content: center;
}

.footer-logo {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  font-family:
    "Archivo",
    -apple-system,
    sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  justify-content: center;
  padding: 2px 1px;
  text-decoration: unset;
  color: #fff;
}

.contact-info {
  font-family:
    "Roboto",
    -apple-system,
    sans-serif;
  line-height: 22px;
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-link {
  color: white;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.contact-link:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  margin-top: 20px;
  width: 100%;
  align-items: end;
  gap: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  justify-content: center;
}

.links-container {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 8px;
  justify-content: start;
}

.footer-link {
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0);
  align-self: stretch;
  margin: auto 0;
  padding: 8px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.footer-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-image {

  object-position: center;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
}

.copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-top: 20px;
}

/* Media Queries */
@media (max-width: 991px) {
  .hero-section {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-header {
    max-width: 100%;
  }

  .header-container {
    max-width: 100%;
  }

  .menu-item {
    white-space: initial;
  }

  .menu-item-highlighted {
    padding-left: 20px;
    padding-right: 20px;
    white-space: initial;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 40px;
  }

  .content-container {
    max-width: 100%;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .hero-title {
    max-width: 100%;
    font-size: 40px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .cta-button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-section {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .stat-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stat-number {
    font-size: 40px;
  }

  .about-section {
    max-width: 100%;
  }

  .section-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-header {
    max-width: 100%;
  }

  .section-title {
    max-width: 100%;
  }

  .about-content {
    max-width: 100%;
  }

  .about-image {
    max-width: 100%;
  }

  .about-text {
    max-width: 100%;
  }

  .why-section {
    max-width: 100%;
  }

  .why-content {
    max-width: 100%;
  }

  .why-text {
    max-width: 100%;
  }

  .advantages-section {
    max-width: 100%;
  }

  .advantages-content {
    grid-template-columns: 1fr;
  }

  .advantages-list {
    max-width: 100%;
  }

  .advantages-wrapper {
    max-width: 100%;
  }

  .advantage-title {
    max-width: 100%;
  }

  .advantage-description {
    max-width: 100%;
  }

  .divider {
    max-width: 100%;
  }

  .advantages-image {
    max-width: 100%;
  }

  .services-section {
    max-width: 100%;
  }

  .services-content {
    max-width: 100%;
  }

  .services-list {
    max-width: 100%;
  }

  .services-row {
    max-width: 100%;
  }

  .service-item {
    max-width: 100%;
  }

  .service-title {
    max-width: 100%;
  }

  .service-description {
    max-width: 100%;
  }

  .service-divider {
    max-width: 100%;
  }

  .contact-section {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-intro {
    max-width: 100%;
  }

  .contact-title {
    max-width: 100%;
  }

  .contact-description {
    max-width: 100%;
  }

  .contact-container {
    max-width: 100%;
    white-space: initial;
  }

  .contact-image {
    max-width: 100%;
  }

  .contact-form {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    white-space: initial;
  }

  .form-container {
    white-space: initial;
  }

  .form-fields {
    white-space: initial;
  }

  .input-field {
    white-space: initial;
  }

  .input-wrapper {
    white-space: initial;
  }

  .input-label {
    white-space: initial;
  }

  .input-control {
    white-space: initial;
  }

  .send-button {
    padding-left: 20px;
    padding-right: 20px;
    white-space: initial;
  }

  .site-footer {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-logo {
    max-width: 100%;
  }

  .contact-info {
    max-width: 100%;
  }

  .footer-links {
    max-width: 100%;
  }

  .footer-image {
    max-width: 100%;
  }

  .copyright {
    max-width: 100%;
  }
}

.why-section .section-title {
  color: #fff;
}


.cookie-banner {
  display: flex;
  width: 100%;
  max-width: 580px;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #fff;
  position: fixed;
  bottom: 0;
  right: 0;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.cookie-title {
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 1.2px;
  margin: 0;
}

.cookie-description {
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.cookie-button {
  padding: 16px 40px;
  border-radius: 24px;
  border: 2px solid #d8664d;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 26.4px;
  cursor: pointer;
}

.cookie-button.primary {
  color: #fff;
  background-color: #d8664d;
}

.cookie-button.secondary {
  color: #d8664d;
  background-color: #fff;
}

@media (max-width: 991px) {
  .cookie-banner {
    padding: 30px;
  }

  .cookie-title {
    font-size: 28px;
  }

  .cookie-description {
    font-size: 15px;
  }

  .cookie-button {
    padding: 14px 36px;
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 20px;
  }

  .cookie-title {
    font-size: 24px;
  }

  .cookie-description {
    font-size: 14px;
  }

  .cookie-button {
    padding: 12px 32px;
    font-size: 18px;
  }
}

@media (max-width:768px){
  .menu-items {
    display: none;
  }
  .section-title {
    font-size: 40px !important;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-form {
    width: 100%;
  }
  .header-container {
    justify-content: center;
  }
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 40px;
  padding-bottom: 120px;
}

.policy-content * {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
}

.policy-content li {
  list-style-position: inside;
}