/* Brochure Section Styles */
.brochure-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    margin: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.brochure-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brochure-content {
    flex: 1;
    min-width: 300px;
}

.brochure-content h2 {
    font-size: 2.5rem;
    color: #216892;
    margin-bottom: 1rem;
    font-weight: 800;
}

.brochure-content p {
    font-size: 1.2rem;
    color: #3e3e3e;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.brochure-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.brochure-features li {
    font-size: 1.1rem;
    color: #216892;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brochure-features li i {
    color: #ffd14a;
    font-size: 1.2rem;
}

.brochure-form-box {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.brochure-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #216892, #ffd14a);
}

.brochure-form-title {
    font-size: 1.5rem;
    color: #216892;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    border-color: #216892;
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 104, 146, 0.1);
}

.btn-download {
    width: 100%;
    padding: 14px;
    background: #216892;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-download:hover {
    background: #1a5274;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 104, 146, 0.3);
}

.btn-download i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .brochure-container {
        flex-direction: column;
        text-align: center;
    }

    .brochure-features li {
        justify-content: center;
    }

    .brochure-form-box {
        width: 100%;
    }
}