/* Brand Vision Page Styles */
.brand-main {
    position: relative;
    width: 100%;
    height: calc(100% - 80px);
    overflow: hidden;
}

.brand-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.brand-content {
    position: absolute;
    top: 50%;
    left: 10%; /* Positioned to the left */
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between text blocks */
    max-width: 60%; /* Limit width so it doesn't span too far */
}

.brand-toptitle {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    align-self: flex-start; /* Left align */
}

.brand-title {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    align-self: flex-start;
}

.brand-txt {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    align-self: flex-start;
}
