/* Reset & Body */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fafafa;
    color: #333;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid #e0e0e0;
}

/* Section Container */
.about-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Intro */
.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.intro p {
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
    line-height: 1.7;
}

/* Content Layout */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

/* Text Area */
.about-text {
    flex: 1;
    min-width: 300px;
    text-align: justify;
}

.about-text h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.about-text p {
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding-left: 18px;
    text-align: justify;
    margin-bottom: 15px;
}

.about-text ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #444;
}

/* Image Area */
.about-image {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 60px;
    font-size: 0.9rem;
}

footer a {
    color: #FECF2F;
    text-decoration: none;
}
