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

:root {
  --primary-color: #2d2d2d;
  --accent-color: #8b7355;
  --text-color: #4a4a4a;
  --light-bg: #f5f5f0;
  --white: #ffffff;
  --gray: #7a7a7a;
  --light-gray: #e8e8e3;
  --dark: #1f1f1f;
  --beige: #d4c5b9;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.3rem;
}

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

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

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.privacy-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}

.privacy-actions {
  display: flex;
  gap: 12px;
}

.btn-accept,
.btn-learn {
  padding: 10px 24px;
  border-radius: 0;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-accept:hover {
  background: var(--beige);
  color: var(--primary-color);
}

.btn-learn {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.header {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.header.hidden {
  transform: translateY(-100%);
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
}

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

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: all 0.3s ease;
}

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

.nav-link {
  color: var(--text-color);
  font-size: 15px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hero {
  background: var(--light-bg);
  color: var(--primary-color);
  padding: 120px 0 100px;
  text-align: left;
  position: relative;
  overflow: hidden;
  background-image: url(../visual_gallery/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--beige);
  opacity: 0.3;
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 10%;
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  opacity: 0.15;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
  padding-left: 40px;
  border-left: 8px solid var(--accent-color);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.8rem;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.1;
  position: relative;
  color: white;
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--beige);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: white;
  line-height: 1.8;
  max-width: 600px;
  background-color: #1f1f1f;
  padding: 20px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

.features {
  padding: 80px 0;
  background: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  text-align: left;
  padding: 35px 30px;
  border-radius: 0;
  transition: all 0.4s ease;
  background: var(--white);
  border-left: 4px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--light-bg);
  transform: rotate(45deg) translate(50%, -50%);
  transition: all 0.4s ease;
}

.feature-card:nth-child(1) {
  border-left-color: var(--accent-color);
}

.feature-card:nth-child(2) {
  border-left-color: var(--beige);
  margin-top: 30px;
}

.feature-card:nth-child(3) {
  border-left-color: var(--primary-color);
}

.feature-card:nth-child(4) {
  border-left-color: var(--accent-color);
  margin-top: 30px;
}

.feature-card:hover {
  transform: translateX(5px);
  box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  transform: rotate(45deg) translate(70%, -70%);
  opacity: 0.5;
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
}

.products-preview {
  padding: 80px 0;
  background: var(--white);
}

.products-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.product-item {
  background: var(--light-bg);
  padding: 45px 35px;
  border-radius: 0;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    0 100%
  );
}

.product-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent var(--white) transparent;
  transition: all 0.4s ease;
}

.product-item:nth-child(2) {
  margin-top: 40px;
  clip-path: polygon(0 30px, 30px 0, 100% 0, 100% 100%, 0 100%);
}

.product-item:nth-child(2)::after {
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  border-width: 30px 30px 0 0;
  border-color: var(--white) transparent transparent transparent;
}

.product-item:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.product-item:hover::after {
  border-color: transparent transparent var(--accent-color) transparent;
}

.product-item:nth-child(2):hover::after {
  border-color: var(--accent-color) transparent transparent transparent;
}

.product-icon {
  width: 90px;
  height: 90px;
  background: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  transform: rotate(45deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transform: rotate(-45deg);
}

.product-item h3 {
  margin-bottom: 1rem;
}

.product-item p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.about {
  padding: 80px 0;
  background: var(--light-bg);
}

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

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--gray);
}

.about-list {
  list-style: none;
  margin-top: 1.5rem;
}

.about-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-list i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.about-image img {
  border-radius: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--light-gray);
}

.process {
  padding: 80px 0;
  background: var(--white);
}

.process h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step:nth-child(even) {
  margin-top: 40px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 auto 1.5rem;
  position: relative;
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: rotate(45deg) scale(1.1);
  background: var(--accent-color);
}

.step h3 {
  margin-bottom: 0.8rem;
}

.step p {
  font-size: 14px;
  color: var(--gray);
}

.cta {
  padding: 80px 0;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.page-hero {
  background: var(--light-bg);
  color: var(--primary-color);
  padding: 80px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  background-image: url(../visual_gallery/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--beige));
  opacity: 0.2;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

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

.page-hero h1 {
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: -1.5px;
  font-size: 2.8rem;
  padding-left: 25px;
  border-left: 5px solid var(--accent-color);
  color: white;
}

.page-hero p {
  font-size: 1.15rem;
  color: white;
  padding-left: 30px;
  max-width: 600px;
  background-color: #1f1f1f;
  padding: 20px;
}

.content-section {
  padding: 80px 0;
  background: var(--white);
}

.intro-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--gray);
  margin-bottom: 1rem;
}

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

.content-text h2 {
  margin-bottom: 1.5rem;
}

.content-text p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.content-image img {
  border-radius: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--light-gray);
}

.color-categories {
  padding: 80px 0;
  background: var(--white);
}

.color-categories h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--light-bg);
  padding: 40px 35px;
  border-radius: 0;
  transition: all 0.4s ease;
  position: relative;
  border-top: 3px solid var(--accent-color);
  box-shadow: 5px 5px 0 var(--light-gray);
}

.category-card:nth-child(even) {
  border-top-color: var(--beige);
  box-shadow: -5px 5px 0 var(--light-gray);
  margin-top: 25px;
}

.category-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--beige);
}

.category-card:nth-child(even):hover {
  box-shadow: -8px 8px 0 var(--accent-color);
}

.category-icon {
  margin-bottom: 1.5rem;
}

.category-icon i {
  font-size: 3rem;
}

.category-card h3 {
  margin-bottom: 1rem;
}

.category-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.color-list {
  list-style: none;
}

.color-list li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--gray);
  position: relative;
  padding-left: 15px;
}

.color-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.color-tips {
  padding: 80px 0;
  background: var(--light-bg);
}

.color-tips h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tip-card {
  text-align: center;
  padding: 35px 25px;
  position: relative;
  background: var(--white);
  border: 2px dashed var(--light-gray);
  transition: all 0.3s ease;
}

.tip-card:nth-child(odd) {
  margin-top: 20px;
}

.tip-card:hover {
  border-style: solid;
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tip-card i {
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.tip-card h3 {
  margin-bottom: 0.8rem;
}

.tip-card p {
  font-size: 14px;
  color: var(--gray);
}

.benefits {
  padding: 80px 0;
  background: var(--white);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 0;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  clip-path: polygon(
    15px 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    0 100%,
    0 15px
  );
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--accent-color);
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background: var(--beige);
}

.benefit-card:nth-child(even)::before {
  background: var(--beige);
}

.benefit-card:nth-child(even)::after {
  background: var(--accent-color);
}

.benefit-card:nth-child(2),
.benefit-card:nth-child(4) {
  margin-top: 30px;
}

.benefit-card:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-card i {
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.benefit-card h3 {
  margin-bottom: 0.8rem;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray);
}

.products-showcase {
  padding: 80px 0;
  background: var(--light-bg);
}

.products-showcase h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.showcase-item {
  background: var(--white);
  padding: 50px 35px;
  border-radius: 0;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid var(--light-gray);
}

.showcase-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent-color), var(--beige));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-item:nth-child(1) {
  transform: rotate(-1deg);
}

.showcase-item:nth-child(2) {
  margin-top: 25px;
}

.showcase-item:nth-child(3) {
  transform: rotate(1deg);
}

.showcase-item:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.showcase-item:hover::before {
  opacity: 1;
}

.showcase-item h3 {
  margin-bottom: 0.8rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.showcase-item p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.contact-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 15px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 5px;
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-item p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 45px 40px;
  border-radius: 0;
  position: relative;
  border-left: 5px solid var(--accent-color);
  box-shadow: 10px 10px 0 var(--light-gray);
}

.contact-form-wrapper h2 {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--light-gray);
  border-radius: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  margin-top: 15px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
  width: auto;
}

.checkbox-label a {
  color: var(--accent-color);
  text-decoration: underline;
}

.contact-form button {
  width: 100%;
  margin-top: 10px;
}

.map-section {
  padding: 80px 0;
  background: var(--white);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--light-gray);
}

.thankyou-section,
.error-section {
  padding: 80px 0;
  background: var(--light-bg);
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}

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

.thankyou-icon {
  margin-bottom: 2rem;
}

.thankyou-icon i {
  font-size: 5rem;
  color: var(--accent-color);
}

.thankyou-content h1 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.thankyou-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-content h1 {
  margin-bottom: 1rem;
}

.error-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 1rem;
}

.policy-date {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-content h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.policy-content p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-left: 25px;
  margin-bottom: 1rem;
}

.policy-content li {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-info p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

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

.footer-links a {
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

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

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav.active {
    transform: translateX(0);
  }

  .hero-content {
    padding-left: 20px;
    border-left-width: 5px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .page-hero h1 {
    font-size: 2rem;
    padding-left: 15px;
  }

  .page-hero p {
    padding-left: 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .about-content,
  .content-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .footer-links {
    justify-content: center;
  }

  .error-code {
    font-size: 5rem;
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(4) {
    margin-top: 0;
  }

  .product-item:nth-child(2) {
    margin-top: 0;
  }

  .category-card:nth-child(even) {
    margin-top: 0;
  }

  .benefit-card:nth-child(2),
  .benefit-card:nth-child(4) {
    margin-top: 0;
  }

  .step:nth-child(even) {
    margin-top: 0;
  }

  .showcase-item:nth-child(1),
  .showcase-item:nth-child(3) {
    transform: rotate(0);
  }

  .showcase-item:nth-child(2) {
    margin-top: 0;
  }

  .tip-card:nth-child(odd) {
    margin-top: 0;
  }
}

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

  .hero {
    padding: 70px 0 60px;
  }

  .hero-content {
    padding-left: 15px;
    border-left-width: 4px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .page-hero h1 {
    font-size: 1.6rem;
    padding-left: 12px;
    border-left-width: 4px;
  }

  .page-hero p {
    padding-left: 16px;
  }

  .features,
  .products-preview,
  .about,
  .process,
  .cta,
  .content-section,
  .color-categories,
  .color-tips,
  .benefits,
  .products-showcase,
  .contact-section,
  .map-section {
    padding: 50px 0;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-actions {
    width: 100%;
    justify-content: center;
  }
}
