* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
.header {
    background-color: #fff;
    padding: 12px 0;
}

.header .container {
    padding-left: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: -250px;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-left: 100px;
}

.nav-links a {
    font-family: 'Encode Sans Expanded', sans-serif;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.nav-links a:hover {
    color: #1a1a1a;
    transform: scale(1.1);
}

.header-buttons {
    display: flex;
    gap: 12px;
    margin-right: -250px;
}

.btn-contact {
    font-family: 'Encode Sans Expanded', sans-serif;
    background-color: #111111;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #333;
}

.btn-signin {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-signin:hover {
    background-color: #f5f5f5;
}

.bg4-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.bg4-image {
    width: 80%;
    height: auto;
    display: block;
    object-fit: contain;
    margin-left: auto;
    position: relative;
}

.bg4-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.bg4-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    z-index: 2;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0.95) 55%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0) 100%);
}

.bg4-content {
    max-width: 600px;
}

.bg4-content .about-label {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #000000;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bg4-content .about-label:hover {
    background-color: #e3b305;
    color: #fff;
    border-color: #e3b305;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 165, 116, 0.3);
}

.bg4-content .about-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    font-family: 'Zalando Sans Expanded', sans-serif;
}

.bg4-content .about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.bg4-content .about-text strong {
    font-weight: 700;
    color: #000;
}

/* About Us Image Section */
.aboutus-image-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: 100px 0;
}

.aboutus-image-section .why-choose-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin: 0 0 60px 0;
    font-family: 'Commissioner', sans-serif;
    text-align: center;
    position: relative;
    z-index: 3;
}

.yellow-slanted-shape {
    position: absolute;
    width: 500px;
    height: 350px;
    background-color: #160146;
    transform: rotate(-15deg) skew(-10deg);
    z-index: 1;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg) skew(-10deg);
    border-radius: 15px;
}

.aboutus-image {
    width: 950px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    margin-top: 90px;
}


