.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;

}


/* Service Options */

.services-container {
	display: flex;
}

.services-container {
	display: flex;
	padding: 35px 2%;
	gap: 15px;
}

.service-options-container {
    display: flex;
flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
gap: 10px;
}

.service-option {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
max-width: 300px;
margin: auto;
}

.service-option:hover,
.service-option.active {
	background-color:  var(--accent-color-alpha);
opacity: 1;
}

/* Service Content */
.service-content {
	border: 2px solid #eaeaea;
	padding-top: 20px;
	border-radius: 8px;
	background: #fff;
}

.service-details {
    display: none;
    font-size: 16px;
    color: #333;
}

.service-details.active {
    display: block;
}
service-offered-text {
	text-align: start;
}


.service-offered-text {
	margin-block: 20px;
}

.service-offered-image {
	text-align: center;
}


@media (max-width: 981px) {
.services-container {
	flex-direction: column;
}

.service-options-container {
display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 20px;
}

.service-option {
	font-size: 14px;
}
}

@media (max-width: 500px) {
.service-option {
	font-size: 12px;
}
}

@media (max-width: 400px) {
.service-options-container {
	grid-template-columns: repeat(1, 1fr);
}

.services-container {
	margin: 10px auto;
}
}