/* General Styles */
:root{
    --brand: #FF8C44;
    --bg: #ffffff;
    --page-bg: #f5f5f5;
    --text: #222;
    --muted: #6b6b6b;
    --container: 1200px;
    --radius: 12px;
    --shadow: 0 8px 24px rgba(16,24,40,0.06);
    --gap: 1.5rem;
    --max-img: 320px;
    --transition: 180ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{ height:100%; }
body{
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--page-bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

/* About Us Section */
.about-us{
    background: var(--bg);
    padding: 3rem 1rem;
    margin: 2rem auto;
    border-radius: var(--radius);
    max-width: var(--container);
    box-shadow: var(--shadow);
}

.about-container {
    max-width: calc(var(--container) - 4rem);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 900px){
    .about-container{ grid-template-columns: 1fr; }
}

/* Section Headers */
h2{ color: var(--brand); font-size: 1.6rem; margin-bottom: .5rem; }
h3{ color: #222; font-size: 1.125rem; margin-bottom: .75rem; }
h4{ font-size: 1rem; margin-bottom: .5rem; }

/* Company Info Section */
.company-info p{
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1rem;
    max-width: 70ch;
}

/* Vision and Mission */
.vision, .mission {
    margin-bottom: 1.25rem;
}

.vision p, .mission p {
    font-size: 16px;
    color: #555;
}

/* Values Section */
.values ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: .5rem;
}

.values li {
    color: var(--muted);
}

.values li strong {
    color: var(--brand);
}

/* Founders' Profiles */
.owners{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
    align-items: start;
}

.owner-profile{
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.98));
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(16,24,40,0.04);
    transition: transform var(--transition), box-shadow var(--transition);
}

.owner-profile:hover{ transform: translateY(-6px); box-shadow: 0 16px 32px rgba(16,24,40,0.08); }

.owner-profile img{
    width: 100%;
    max-width: var(--max-img);
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto .75rem;
    display: block;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.owner-profile h4{ margin-bottom: .25rem; color: #111; }
.owner-profile p{ color: var(--muted); font-size: .95rem; line-height: 1.5; }

/* Aside utilities */
.about-aside{ padding: .5rem; }

/* Small screen adjustments */
@media (max-width: 480px){
    .about-us{ padding: 1.25rem; margin: 1rem; }
    .company-info p{ font-size: .95rem; }
    .owner-profile img{ max-width: 220px; }
}
