* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Josefin Sans', sans-serif;
}

body {
  background-color: #f2f2f2;
  color: #333;
}

.about {
  width: 100%;
  padding: 60px 20px;
  background-color: #dbdbdb;
}

.main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 30px;
  animation: fadeIn 1.2s ease-in-out;
}

.image-container img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.divider {
  width: 2px;
  background: #ccc;
  height: auto;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.about-text h5 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #444;
  font-weight: 500;
}

.about-text span {
  color: #f9004d;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text a {
  color: #f9004d;
  text-decoration: none;
}

.about-text a:hover {
  text-decoration: underline;
}

.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  gap: 10px;
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.brands li img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brands li img:hover {
  transform: scale(1.1);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

button {
  background-color: #f9004d;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: transparent;
  border: 2px solid #f9004d;
  color: #f9004d;
}

.list-text ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
}

hr {
  margin: 30px 0;
  border: none;
  height: 2px;
  background: #e0e0e0;
}

.blog-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #f2f2f2;
  text-align: center;
}

.blog-container {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease-in-out;
}

.blog-container h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 20px;
}

.blog-message {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}



.gallery h2 {
  text-align: center;
  margin: 60px 0 30px; /* top: 60px, bottom: 30px */
  font-size: 32px;
  font-weight: 600;
  color: #222;
}

.img-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.img-gallery img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.img-gallery img:hover {
  transform: scale(1.05);
}

.full-img {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.full-img img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.full-img span {
  position: absolute;
  top: 30px;
  right: 60px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.video-gallery {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.video-gallery h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.video {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
}

.video video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


/* Divider Styling */
.divider {
  width: 2px;
  background-color: #ccc;
  height: 100%;
  margin: 0 20px;
}

.styled-divider {
  height: 5px;
  background: linear-gradient(to right, #f9004d, #ccc);
  border: none;
  margin: 40px 0;
}

/* Brands Grid */
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.brands li {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
}

.brands img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brands img:hover {
  filter: none;
}

/* Buttons and Text */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.list-text ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.6;
}



@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main {
    flex-direction: column;
    align-items: center;
  }

  .divider {
    display: none;
  }

  .about-text {
    width: 100%;
    padding-top: 20px;
  }

  .image-container img {
    max-width: 90%;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text h5 {
    font-size: 18px;
  }

  .brands {
    grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
  }

  .brands li img {
    width: 30px;
    height: 30px;
  }
}
