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

@media (max-width: 768px) {
  .policy {
    padding-block: 100px 60px !important;
  }
}

.success__text {
  margin-bottom: 27px;
}

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

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

.success__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.policy__title {
  color: #000000;
}

.policy__text h2 {
  text-align: left;

  font-size: 21px;
}

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

.policy__text h2,
.policy__text p {
  text-align: left;
  color: #000000;
}

.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-color: #ff1744;
  --secondary-color: #ffe5e9;
  --text-dark: #000000;
  --text-light: #333333;
  --white: #ffffff;
  --pink-light: #ffe5e9;
  --pink-medium: #ffd1dc;
  --gradient-pink: linear-gradient(135deg, #ffe5e9 0%, #ffd1dc 100%);
}

body {
  font-family: "Unbounded", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.cookie-popup.active {
  display: flex;
}

.cookie-popup-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cookie-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.cookie-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cookie-popup-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.cookie-popup-content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cookie-btn {
  width: 100%;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.cookie-accept {
  background: var(--primary-color);
  color: var(--white);
}

.cookie-accept:hover {
  background: #e60032;
  transform: translateY(-2px);
}

.cookie-customize {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.cookie-customize:hover {
  background: var(--text-dark);
  color: var(--white);
}

/* Success Popup */
.success-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-popup.active {
  display: flex;
}

.success-popup-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
}

.success-popup-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.success-popup-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 25px;
}

.success-close {
  width: 100%;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close:hover {
  background: #e60032;
  transform: translateY(-2px);
}

/* Header */
.header {
  background: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 18px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 3px;
}

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

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

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

/* Hero Section */
.hero {
  background: var(--secondary-color);
  padding: 80px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.title-fruit {
  color: var(--primary-color);
}

.title-main {
  color: var(--text-dark);
}

.hero-subtitle {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: #e60032;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 23, 68, 0.3);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Styles */
.section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 50px;
}

/* What We Do Section */
.what-we-do {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--pink-light);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Our Works Section */
.our-works {
  padding: 80px 0;
  background: var(--secondary-color);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.work-card {
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.work-berrybreeze {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.work-watermelon {
  background: linear-gradient(135deg, #00c853 0%, #00695c 100%);
}

.work-zeststore {
  background: linear-gradient(135deg, #ffd54f 0%, #ffa000 100%);
}

.work-cherrychain {
  background: linear-gradient(135deg, #5e35b1 0%, #311b92 100%);
}

.work-card:hover {
  transform: translateY(-5px);
}

.work-image {
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.work-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.work-description {
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

/* Palette Generator Section */
.palette-generator {
  padding: 80px 0;
  background: var(--pink-light);
}

.palette-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.palette-image img {
  width: 100%;
  height: auto;
}

.palette-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.palette-intro {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.palette-description {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.palette-text .btn {
  margin-top: 20px;
}

/* Team Section */
.team {
  padding: 80px 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.team-member {
  text-align: center;
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 5px solid var(--pink-light);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.member-role {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.5;
}

/* Why FruitFusion Section */
.why-fruitfusion {
  padding: 80px 0;
  background: var(--secondary-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--pink-light);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--pink-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-image img {
  width: 100%;
  height: auto;
}

.contact-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.contact-info {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  background: var(--white);
  color: var(--text-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

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

.contact-form button {
  align-self: flex-start;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
}

.copyright {
  text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    align-items: flex-start;
  }

  .nav-menu.active {
    right: 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

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

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

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

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

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .copyright {
    text-align: left;
  }

  .cookie-popup-content {
    padding: 30px 20px;
  }

  .cookie-popup-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

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

  .btn {
    padding: 12px 30px;
    font-size: 12px;
  }

  .nav-menu {
    width: 100%;
    right: -100%;
  }
}
