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

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-text h1 {
  text-align: left !important;
  padding-top: 0 !important;
  padding-left: 0 !important;
}

.about-text p {
  margin: 10px 0 !important;
}

/* About Me Section */
.about-me {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  padding: 2rem;
}

.about-content {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Image Section */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 400px;
}

/* Text Section */
.about-text {
  padding: 2rem;
  flex: 1;
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

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

  .about-text {
    padding: 1.5rem;
  }
}
