.branches-page {
    width: 100%;
    font-family: Arial, sans-serif;
}

/* Section Title */
.branches-title {
    font-size: 22px;
    color: #333;
    border-bottom: 1px solid #d9d9d9;
    padding: 12px 0 12px 20px;
    margin-bottom: 10px;
}

/* Notice */
.branches-notice {
    margin: 0 30px 20px 30px;
    padding: 10px 15px;
    background: #fff7e6;
    border: 1px solid #ffd591;
    border-radius: 6px;
    font-size: 14px;
    color: #8a6d3b;
    font-weight: bold;
}

/* Outer padding wrapper */
.branches-wrapper {
    padding: 0 30px 25px 30px;
}

/* Card */
.branch-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Top Header */
.branch-header {
    padding: 18px 30px;
    background: #fafafa;
    border-bottom: 1px solid #e5e5e5;
}

.branch-title {
    font-size: 22px;
    color: #222;
    font-weight: 600;
    margin-bottom: 6px;
}

.branch-meta {
    color: #777;
    font-size: 13px;
}

/* Main layout */
.branch-body {
    display: flex;
    gap: 35px;
    padding: 25px 30px;
    align-items: stretch;
}

/* Left content */
.branch-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.branch-heading {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    border-left: 4px solid #8b6f47;
    padding-left: 10px;
}

.branch-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.branch-desc a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
}

/* Founder box */
.branch-founder {
    width: 240px;
    background: #faf8f5;
    border: 1px solid #eee4d8;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.founder-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b6f47;
    margin-bottom: 12px;
    font-weight: bold;
}

.founder-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 100%;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.founder-name {
    margin-top: 14px;
    font-size: 20px;
    font-weight: bold;
    color: #222;
}

.founder-location {
    margin-top: 4px;
    font-size: 14px;
    color: #777;
    font-weight: 600;
}

/* Branch list page (your list) */
.branch-list {
    list-style: none;
    padding: 0 30px;
    margin: 0;
}

.branch-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px dashed #ddd;
}