@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Page Background */
body {
  background: #FAF8F6; /* Soft off-white background */
  color: #333;
}

/* Main Section */
.section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 10%;
}

/* Container */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Left Content Section */
.content-section {
  flex: 1;
  padding-right: 3rem;
}

.content-section .title {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #2C2C2C;
}

.content-section .content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #555;
  margin-top: 1rem;
}

.content-section .content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-top: 1rem;
}

/* Read More Section */
.additional-content {
  display: none;
  font-size: 1rem;
  color: #444;
  margin-top: 1rem;
  line-height: 1.8;
}

/* Button */
.content-section .content .button {
  margin-top: 1.5rem;
}

.content-section .content .button a {
  display: inline-block;
  background: #2C2C2C;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.content-section .content .button a:hover {
  background: #FF914D;
  color: white;
}

/* Social Icons */
.content-section .social {
  margin-top: 2rem;
}

.content-section .social a {
  font-size: 1.6rem;
  margin-right: 15px;
  color: #888;
  transition: 0.3s ease-in-out;
}

.content-section .social a:hover {
  color: #FF914D;
}

/* Right Image Section */
.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  max-width: 100%;
  width: 380px;
  border-radius: 10px;
  opacity: 0.9;
  transition: 0.3s ease-in-out;
}

.image-section img:hover {
  opacity: 1;
  box-shadow: 0 0 40px rgba(255, 145, 77, 0.3);
}

/* Back Button */
.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  background: #2C2C2C;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.back-button:hover {
  background: #FF914D;
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .content-section {
    padding-right: 0;
  }

  .image-section {
    margin-top: 2rem;
  }

  .image-section img {
    width: 280px;
  }
}
