.custom-container {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    gap: 30px;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

.custom-content {
    display: flex;
    width: 70%;
}

.custom-image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.custom-text-section {
    padding: 20px;
}

.custom-text-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ad0f1d;
}

.custom-text-section p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #000000;
}

.custom-sidebar {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-solutions h3,
.custom-brochures h3,
.custom-contact-form h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ad0f1d;
}

.custom-solutions button {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #555555;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-solutions button:hover {
    background-color: #ad0f1d;
}

.custom-brochures .custom-btn-download {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #b8101f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
}

.custom-brochures .custom-btn-download:hover {
    background-color: #ad0f1d;
}

.custom-contact-form form {
    display: flex;
    flex-direction: column;
}

.custom-contact-form input,
.custom-contact-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #555555;
    border-radius: 5px;
    /* background-color: #2b2f33; */
    color: #ffffff;
}

.custom-contact-form button {
    padding: 10px;
    background-color: #b8101f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-contact-form button:hover {
    background-color: #ad0f1d;
}