/* Scalable VPS Hosting - Data Center Section */
.data-center-section {
	padding: 100px 0;
	flex-flow: column;
	background: linear-gradient(180deg, #E8F4FD 0%, #FFFFFF 54.17%, rgba(232, 244, 253, 0.38) 100%);
}

.data-center-section .section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--main-color);
	text-align: center;
	margin: 0 0 60px 0;
	line-height: 1.2;
}

.data-center-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	max-width: 1368px;
	margin: 0 auto;
	padding: 0 40px;
}

.data-center-left {
	flex: 0 0 33%;
	max-width: 400px;
}

.data-center-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.data-center-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--main-color);
	margin: 0;
	line-height: 1.3;
}

.data-center-text {
	font-size: 16px;
	font-weight: 400;
	color: #6B7280;
	line-height: 1.6;
	margin: 0;
}

.data-center-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-top: 8px;
}

.data-center-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.data-center-item-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--sec-color);
	margin: 0;
	line-height: 1.3;
}

.data-center-item ul {
	list-style: disc;
	margin: 0;
	padding-left: 24px;
	display: block;
}

.data-center-item ul li {
	list-style: disc;
	display: list-item;
	margin-bottom: 8px;
}

.data-center-item ul li:last-child {
	margin-bottom: 0;
}

.data-center-item-text {
	font-size: 16px;
	font-weight: 400;
	color: #374151;
	line-height: 1.6;
	margin: 0;
}

.data-center-right {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.map-wrapper {
	position: relative;
	width: 100%;
	height: auto;
}

.world-map {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

/* Explore Marketplace Section */
.explore-marketplace-section {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	padding: 100px 0;
}

.marketplace-title {
	font-size: 36px;
	font-weight: 500;
	color: var(--main-color);
	text-align: center;
	margin: 0 0 50px 0;
	line-height: 1.2;
}

.marketplace-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.marketplace-item {
	background-color: #ffffff;
	border: 1px solid var(--main-color);
	border-radius: 12px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.marketplace-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	border-color: var(--sec-color);
}

.marketplace-item-logo {
	width: 135px;
	height: 135px;
	object-fit: cover;
}

.marketplace-item-logo svg {
	width: 100%;
	height: 100%;
}

.marketplace-item-name {
	font-size: 16px;
	font-weight: 500;
	color: var(--main-color);
	text-align: center;
}

.marketplace-button-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.marketplace-button {
	display: inline-block;
	padding: 17px 41px;
}

.faq-section {
	background: linear-gradient(180deg, #E8F4FD 0%, #FFFFFF 54.17%, rgba(232, 244, 253, 0.38) 100%);
}

