@font-face {
  font-family: 'MyCustomFont';
  src: url('font/DVN-PTSans-Regular-akflme.ttf') format('truetype'),
       url('font/DVN-PTSans-Bold-pmfufb.ttf') format('truetype');
}

body {
    font-family:  'MyCustomFont','PT Sans',Arial, sans-serif;
    color: #222;
    margin: 0;
}
.avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}
.aboutus-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px 48px 16px;
}

.about-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: rgb(255, 205, 9);
    margin: 40px 0 32px 0;
    text-align: center;
}

.about-card {
    background: #fffbe7;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    border: 4px solid #ffee00;
    padding: 32px 28px 24px 28px;
    margin-bottom: 32px;
}

.about-img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 18px;
}

.about-section-title {
    color: #222;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 0;
}

.about-card p {
    color: #222;
    margin-bottom: 10px;
    font-size: 1rem;
}

.about-process-row {
    display: flex;
    gap: 18px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.about-process-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 22px 16px;
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
    border: 2px solid #ffee00;
}

.about-process-icon {
    width: 38px;
    height: 38px;
    background: #e3eaff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 12px auto;
}

.about-process-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.about-process-card p {
    color: #444;
    font-size: 0.98rem;
    margin: 0;
}

.about-commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-commitment-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.about-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #e3eaff;
    color: #2563eb;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 2px;
}

.about-commitment-list strong {
    color: #222;
    font-weight: 700;
    font-size: 1rem;
}

.about-commitment-list p {
    color: #444;
    margin: 2px 0 0 0;
    font-size: 0.98rem;
}

.about-builder {
    text-align: center;
    margin: 48px 0 0 0;
}

.about-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px auto;
    display: block;
    border: 4px solid #e3eaff;
}

.about-builder-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.about-builder-role {
    color: #2563eb;
    font-size: 1rem;
    margin-bottom: 10px;
}

.about-builder-desc {
    color: #444;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1rem;
}

/* For the vision card layout */
.about-card.about-vision {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    background: #fffbe7;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    border: 4px solid #ffee00;
    padding: 32px 28px 24px 28px;
    margin-bottom: 32px;
    gap: 32px;
}

/* Content on the left */
.about-vision-content {
    flex: 1 1 0;
    min-width: 0;
}

/* Rectangle avatar on the right */
.avatar-img-rect {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    align-self: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 4px solid #ffee00;
}

@media (max-width: 900px) {
    .avatar-img-rect {
        min-height:300px ;

    }
    .aboutus-content {
        max-width: 98vw;
    }
    .about-process-row {
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 700px) {
    .about-card.about-vision {
        flex-direction: column;
        align-items: center;
    }
    .avatar-img-rect {
        margin-left: 0;
        margin-top: 18px;
        width: 90vw;
        max-width: 320px;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .aboutus-content {
        padding: 0 2vw 24px 2vw;
    }
    .about-card {
        padding: 14px 6vw;
    }
    .about-title {
        font-size: 1.3rem;
    }
}