Business Support
17 June 2025 2025-06-17 9:17Business Support
<style>
/* — General & Typography — */
.neurolearn-body {
font-family: ‘Poppins’, sans-serif;
color: #333333;
line-height: 1.7;
background-color: #ffffff;
}
.neurolearn-container {
max-width: 1140px;
margin: 0 auto;
padding: 40px 20px;
}
/* — Section Styling — */
.neurolearn-section {
padding: 80px 0;
overflow: hidden;
}
.neurolearn-section.bg-light-gray {
background-color: #f8f9fa;
}
/* — Headings — */
.neurolearn-h1, .neurolearn-h2, .neurolearn-h3 {
font-weight: 700;
color: #005f73; /* Deep Teal/Blue */
}
.neurolearn-h1 {
font-size: 3rem;
margin-bottom: 20px;
line-height: 1.2;
}
.neurolearn-h2 {
font-size: 2.5rem;
text-align: center;
margin-bottom: 40px;
}
.neurolearn-h3 {
font-size: 1.5rem;
margin-bottom: 15px;
}
.neurolearn-subheadline {
font-size: 1.25rem;
color: #555;
max-width: 700px;
margin: 0 auto 30px auto;
}
/* — Buttons — */
.neurolearn-btn {
display: inline-block;
background-color: #ee9b00; /* Warm Orange/Gold */
color: #ffffff;
padding: 15px 35px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.neurolearn-btn:hover {
transform: translateY(-3px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
/* — Layout & Flexbox — */
.neurolearn-flex-container {
display: flex;
align-items: center;
gap: 40px;
}
.neurolearn-flex-item {
flex: 1;
}
.neurolearn-text-content {
padding-right: 20px;
}
.neurolearn-image-placeholder {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
/* — Services Grid — */
.neurolearn-services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 50px;
}
.neurolearn-service-card {
background-color: #ffffff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.neurolearn-service-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.neurolearn-service-icon {
width: 60px;
height: 60px;
margin-bottom: 20px;
color: #0a9396; /* Lighter Teal */
}
/* — Benefits List — */
.neurolearn-benefits-list {
list-style: none;
padding-left: 0;
}
.neurolearn-benefits-list li {
font-size: 1.1rem;
padding: 10px 0 10px 40px;
position: relative;
}
.neurolearn-benefits-list li::before {
content: ‘✓’;
position: absolute;
left: 0;
top: 10px;
color: #0a9396; /* Lighter Teal */
font-weight: 700;
font-size: 1.5rem;
}
/* — Form Styling — */
.neurolearn-form-container {
max-width: 800px;
margin: 40px auto 0 auto;
background-color: #ffffff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.neurolearn-form-field {
margin-bottom: 20px;
}
.neurolearn-form-field label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #005f73;
}
.neurolearn-form-field input[type=”text”],
.neurolearn-form-field input[type=”email”],
.neurolearn-form-field input[type=”tel”],
.neurolearn-form-field select,
.neurolearn-form-field textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
font-family: ‘Poppins’, sans-serif;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.neurolearn-form-field input:focus,
.neurolearn-form-field select:focus,
.neurolearn-form-field textarea:focus {
border-color: #0a9396;
outline: none;
}
.neurolearn-form-field textarea {
min-height: 120px;
resize: vertical;
}
.neurolearn-checkbox-group label {
display: flex;
align-items: center;
margin-bottom: 10px;
font-weight: 400;
}
.neurolearn-checkbox-group input {
margin-right: 12px;
width: 18px;
height: 18px;
}
.neurolearn-form-submit-btn {
width: 100%;
padding: 15px;
font-size: 1.1rem;
border: none;
cursor: pointer;
}
/* — Responsive Design — */
@media (max-width: 768px) {
.neurolearn-h1 { font-size: 2.5rem; }
.neurolearn-h2 { font-size: 2rem; }
.neurolearn-flex-container {
flex-direction: column;
}
.neurolearn-text-content {
padding-right: 0;
text-align: center;
}
/* Reverse flex order for visual flow on mobile */
.neurolearn-flex-container.reverse-mobile {
flex-direction: column-reverse;
}
}
</style>
</head>
<body class=”neurolearn-body”>