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

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

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

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

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

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

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f6f1;
}

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

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-accept,
.btn-decline {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-accept {
  background-color: #4caf50;
  color: white;
}

.btn-accept:hover {
  background-color: #45a049;
}

.btn-decline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
  padding: 0;
  position: sticky;
  top: 10px;
  z-index: 1000;
}

.navbar {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #4a4a4a;
  border-radius: 60px;
}

.logo span {
  color: white;
  font-size: 24px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
  padding: 60px 0;
  background-color: #f8f6f1;
}

.hero-content {
  gap: 60px;
  align-items: center;
}

.hero-image {
}

@media (max-width: 768px) {
  .hero-image img {
    height: 260px;
    object-fit: cover !important;
  }
}

.hero-image img {
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #333;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #666;
}

.hero-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tag {
  background-color: #f0f0f0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
}

/* Planning Section */
.planning-section {
  padding: 80px 0;
  background-color: white;
}

.planning-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.planning-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 20px 0;
  color: #333;
}

.intro-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #666;
}

.planning-list {
  list-style: none;
  margin-bottom: 30px;
}

.planning-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #666;
}

.planning-list li::before {
  content: "•";
  color: #f0d04a;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

/* Colors Section */
.colors-section {
  padding: 80px 0;
  background-color: #f8f6f1;
}

.colors-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.color-list {
  list-style: none;
  margin-bottom: 30px;
}

.color-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

.color-list li::before {
  content: "•";
  color: #4caf50;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

.color-list strong {
  color: #333;
}

/* Textures Section */
.textures-section {
  padding: 80px 0;
  background-color: white;
}

.textures-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.textures-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .textures-image img {
    height: 260px;
    object-fit: cover !important;
  }
}

.textures-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 10px;
}

.textures-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

/* Furniture Section */
.furniture-section {
  padding: 80px 0;
  background-color: #f8f6f1;
}

.furniture-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.furniture-section p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

/* Lighting Section */
.lighting-section {
  padding: 80px 0;
  background-color: white;
}

.lighting-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.lighting-types p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

.lighting-types strong {
  color: #333;
}

/* Experts Section */
.experts-section {
  padding: 80px 0;
  background-color: #f8f6f1;
}

.experts-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.expert-opinion {
  margin-bottom: 40px;
}

.expert-opinion h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.expert-opinion p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

.expert-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.expert-buttons .btn {
  padding: 12px 30px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  border: 2px solid #333;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.expert-buttons .btn:hover {
  background-color: #333;
  color: white;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background-color: white;
}

.form-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf50;
}

.btn-submit {
  background-color: #4caf50;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #45a049;
}

/* Footer */
.footer {
  color: white;
  padding: 40px 0 20px 0;
}

.footer-inner {
  background-color: #4a4a4a;

  margin-bottom: 20px;
  border-radius: 24px;
  padding: 20px;
}

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

.footer-logo span {
  font-size: 24px;
  font-weight: 500;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f0d04a;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #666;
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .textures-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #4a4a4a;
    border-radius: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: left 0.3s ease;
    padding-top: 50px;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .nav-list a {
    font-size: 18px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .textures-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .expert-buttons {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  section {
    padding: 60px 0 !important;
  }
}

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

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-tags {
    justify-content: center;
  }

  .planning-section h2,
  .colors-section h2,
  .textures-section h2,
  .furniture-section h2,
  .lighting-section h2,
  .experts-section h2 {
    font-size: 26px;
  }

  .expert-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  section {
    padding: 40px 0 !important;
  }
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

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