/* Hero Section */
.broker-hero {
    position: relative;
    background: white;
    padding: 60px 0;
    text-align: left;
    margin-top: 160px;
}

.broker-hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 160px;
    width: 45%;
    height: calc(100% - 160px);
    background: url('../media/zC-media_office.png') no-repeat center;
    background-size: cover;
    border-radius: 12px;
    z-index: 1;
}

.broker-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.broker-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #1a1a1a;
    max-width: 55%;
}

.broker-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 50%;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0;
    color: #666;
}

/* Why Partner Section */
.why-partner {
    padding: 100px 0;
    background-color: #f8fafc;
}

.why-partner h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a365d;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.7);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #2a4365;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2a4365 0%, #4299e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-item h3 {
    color: #1a365d;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Form Section */
.broker-inquiry-form {
    padding: 100px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.7);
}

.form-container h2 {
    color: #1a365d;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.form-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a4365;
    box-shadow: 0 0 0 3px rgba(42, 67, 101, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .broker-hero {
        padding: 40px 0;
        margin-top: 120px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .broker-hero .container {
        padding: 0 24px;
    }

    .broker-hero::after {
        position: relative;
        top: 0;
        right: auto;
        width: auto;
        height: 240px;
        margin: 0 24px;
        border-radius: 12px;
        display: block;
    }

    .broker-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .broker-hero .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .broker-hero h1 {
        font-size: 2rem;
    }

    .broker-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
} 