.industry-related-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

/* Fix for service description box */
.service-description {
}

/* Fix for form wrapper */
.industry-form-wrapper {
}
ul.location-cat-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	gap: 15px;
}

#openai-generator-form select,
#openai-generator-form textarea {
    width: 100%;
    max-width: 600px;
}

#openai-response  {
    background: #f9f9f9;
    margin-top: 30px;
    padding: 15px;
    border: 1px solid #ddd;
}
#openai-response textarea{
    box-sizing: border-box;
    max-width: unset;
    width: 100%;
    min-height: 300px;
}
input.error, textarea.error {
    border: 1px solid red;
    background-color: #ffe6e6;
}


ul.industry-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.industry-posts li {
    flex: 1 0 180px; /* minimum width for each item */
    max-width: 220px; /* optional: prevents very wide items */
}

ul.industry-posts li a {
    display: block;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

@media (max-width: 768px) {
    ul.industry-posts li {
        flex: 1 0 100%;
    }
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 2.2em;
    margin-bottom: 1em;
}

p {
    margin-bottom: 1.4em;
    line-height: 1.8;
}


.notice-success {
    padding: 12px 15px;
    background: #e7f7e2;
    border: 1px solid #c0e7b5;
    color: #2d7b2d;
    border-radius: 6px;
    font-weight: 600;
}



#custom-contact-form label {
    font-size: 14px;
}
#custom-contact-form input, 
#custom-contact-form textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 15px 10px;
}
#custom-contact-form button {
    background: #0065ff;
    color: #fff;
    border: 1px solid #0065ff;
    border-radius: 2px;
    padding: 8px 12px;
    cursor: pointer;
}