/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Background with gradient */
body {
  background: linear-gradient(to bottom right, #f9eca1, #e6ae6b);
  color: #333;
  line-height: 1.6;
}

/* Header */
.about-header {
  background-color: #FF7518; /* Orange header */
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.about-header p {
  font-size: 1.2rem;
  font-style: italic;
}

/* Section Layout */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 10%;
  gap: 2rem;
}

/* Image */
.about-image img {
  width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Text */
.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FF4500;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: justify;
}
