/* General Styles */


h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(to right, #a83232, #a83232 50%, #a83232);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid #a83232;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    width: 100%;
    margin: 0 auto 15px auto;
    text-align: center;
}

p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}
.content {
    max-width: 80%;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Flexbox adjustments for individual sections */
.business-services, .business-steps .why-choose {
    flex: 1;
    border: 2px solid #a83232;
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff;
    margin-bottom: 25px;
}

/* List Styling */
ul, ol {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto 30px;
    width: 100%;
    list-style: none;
    padding-left: 0;
}

ul li, ol li {
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px;
	border: 2px solid #a83232;
    border-left: 5px solid #a83232;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

ul li strong, ol li strong {
    color: #a83232;
}

ul li::before, ol li::before {
    content: '';
    margin-right: 10px;
}

/* Section Titles */
h3 {
    color: #a83232;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
}

/* Call to Action Button */
.cta-button {
    display: block;
    width: 60%;
    height: 80px;
    margin: -10px auto 10px auto;
    padding: 10px 20px;
    background-color: #a83232;
    color: white;
    font-size: 2rem;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #942c2c;
}

/* Main Description Section */
.main-description {
	border: 2px solid #a83232;
	border-radius: 10px;
	background-color: #f9f9f9;
	margin-top: -10px; 
	padding: 10px;
	width: 90%;
}

/* Testimonial Styling */
.testimonial {
    font-style: italic;
    background-color: #fff;
    border-left: 5px solid #a83232;
    padding: 15px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
	line-height: 1px;
}

/* Business Steps Section */
.business-steps ol {
    padding-left: 0;
    counter-reset: step;
}

.business-steps ol li {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f9f9f9;
	border: 2px solid #a83232;
    border-left: 5px solid #a83232;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    counter-increment: step;
}

.business-steps ol li::before {
    content: counter(step) ". ";
    font-weight: bold;
    color: #a83232;
    margin-right: 10px;
}

/* Footer */
footer p {
    color: white;
}
section {
    flex: 1;
    border: 2px solid #a83232;
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .cta-button {
        width: 100%;
        height: 60px; /* Adjust button height for mobile */
        font-size: 1.5rem;
    }

    .content {
        padding: 15px; /* More compact padding for mobile */
    }

    h2, h3 {
        font-size: 2rem; /* Adjust font size for headings */
    }

    p {
        font-size: 1rem;
        line-height: 1.4;
    }

    ul, ol {
        font-size: 1rem;
        padding-left: 0;
    }

    ul li, ol li {
        padding: 10px; /* Reduce padding for list items on mobile */
    }
    section, .content, .main-description, .business-services, .why-choose, .business-steps, .one-time-support .cta-button{
		max-width: 95%;
		width: 100%;
    }
	section, .CONTENT, .main-description, .business-services, .why-choose, .business-steps, .one-time-support .cta-button {
    margin-left: 0;
    margin-right: 5px;
	padding: 10px 10px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


    
}
