* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif;
}

body {
  background: #fff url(../assets/svg/bg.svg);
  background-position: left top;
  padding: 16px;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sections' wrappers */
.container {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 25px 20px;
  padding-bottom: calc(25px + env(safe-area-inset-bottom));
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0px 0px 20px 0px rgba(185, 103, 5, 0.5);
  border-radius: 20px;
}
.content-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  flex: 1;
  min-height: 0;
}

/* Logo section */
.top-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  width: 250px;
  gap: 14px;
}
.logo__image {
  width: 90px;
}
.logo__title {
  line-height: 29px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #2f2f2f;
  font-size: 24px;
  text-transform: uppercase;
}

/* Shared red button */
.cta-button {
  width: 100%;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 600;
  padding: 16px 24px;
  background: #cf1317;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Back button */
.back-button {
  position: absolute;
  left: 0;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding-left: 12px;
  cursor: pointer;
}

.back-button svg {
  flex-shrink: 0;
}

/* Секції за замовчуванням приховані */
#rating-section,
#thanks-section,
#contact-section,
#sent-section {
  display: none;
}
