/*
  BACKUP: Original about.css content (commented out)
  Kept here as a backup per request. The new About page
  uses assets/css/About_page.css instead.

  ==========================
     ABOUT SECTION (REFINED)
  ========================== */

/* .about {
    background: linear-gradient(135deg, #f0fbf9, #e6f7f4);
    border-radius: 18px;
    padding: 4rem 2.5rem;
    margin: 3rem auto;
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.18);
    animation: fadeIn 1s ease-out;
}

/* Layout */
.about .container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Text Content */
.about .content {
    max-width: 520px;
}

/* Heading */
.about h2 {
    color: #0f766e; /* Deep luxury teal */
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #1abc9c;
    border-radius: 2px;
}

/* Paragraph */
.about p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #334155; /* premium readable text */
    margin-bottom: 1.4rem;
    text-align: justify;
    max-width: 500px;
}

/* Image */
.about .image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 3.2rem;
}

.about .image img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.28);
    transition: transform 0.4s ease;
}

.about .image img:hover {
    transform: scale(1.04);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {
    .about {
        padding: 2.5rem 1.5rem;
    }

    .about .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about .content {
        max-width: 100%;
    }

    .about h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about p {
        text-align: left;
    }

    .about .image {
        margin-top: 2rem;
    }
}
*/
