/* Distributer Page Styles */
.distributer-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.distributer-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    height: 100vh;
}

/* Left Side - Text Section */
.distributer-text-section {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    position: relative;
}

.distributer-logo {
    margin-bottom: 60px;
}

.distributer-logo img {
    max-height: 150px;
    width: auto;
}

.distributer-content {
    max-width: 500px;
    text-align: center;
}

.distributer-content p {
    font-family: 'Nexa Book';
    font-size: 18px;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 40px;
    font-weight: 300;
}

.distributer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
}

.distributer-btn:hover {
    background-color: var(--dgray);
    color: var(--white);
    text-decoration: none;
}

.distributer-btn i {
    font-size: 20px;
}

/* Right Side - Image Section */
.distributer-image-section {
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.distributer-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .distributer-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: 100vh;
    }

    .distributer-text-section {
        order: 2;
        padding: 40px 30px;
        justify-content: flex-start;
        padding-top: 60px;
    }

    .distributer-image-section {
        order: 1;
    }

    .distributer-logo {
        margin-bottom: 40px;
    }

    .distributer-logo img {
        max-height: 60px;
    }

    .distributer-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .distributer-btn {
        width: 50px;
        height: 50px;
    }

    .distributer-btn i {
        font-size: 18px;
    }
}
