@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&display=swap');

header {
	font-family: 'Roboto', sans-serif;
	background-color: #FFFFFF;
	border-bottom: 1px solid #eee;
	height: 59px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.logo {
	margin-left: 30px;
}


.nav-container {
	display: flex;
	align-items: center;
}

.desktop-menu {
	display: flex;
	margin-right: 20px;
}

.desktop-menu ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.desktop-menu li {
	margin: 0 11px;
}

.desktop-menu a {
	color: #353535;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.desktop-menu a:hover {
	color: #db1b23;
}

.desktop-menu .dropdown {
	position: relative;
}

.desktop-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	width: 150px;
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
}

.dropdown ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding-top: 20px;
}

.desktop-dropdown li {
	display: block;
	margin: 0;
}

.desktop-dropdown a {
	color: #353535;
	padding: 8px 16px;
	display: block;
	font-size: 15px;
}

.desktop-dropdown a:hover {
	background-color: #f9f9f9;
}

.dropdown:hover .desktop-dropdown {
	display: block;
	opacity: 1;
	visibility: visible;
}

.stratio-link {
	display: flex;
	align-items: center;
}

#stratio-inc-logo {
	display: inline-block;
	width: 80px;
	height: 16px;
	background: url('/images/0427_Stratio_Logo_PBlack_inc.png') no-repeat center;
}

#stratio-inc-logo:hover {
	background: url('/images/0427_Stratio_Logo_PRed_inc.png') no-repeat center;
}

.buynowButton {
	margin-left: 20px;
	width: 110px;
	height: 31px;
	border-radius: 10px;
	background-color: #db1b23;
	border: none;
	color: white;
	text-align: center;
	letter-spacing: 1px;
	text-decoration: none;
	font-size: 14px;
	transition-duration: 0.4s;
	cursor: pointer;
	font-weight: 700;
	outline: none;
}

.buynowButton:hover {
	background-color: #ffffff;
	color: #db1b23;
}

.mobile-menu-toggle {
	display: none;
}

#hamburger-button {
	display: inline-block;
	width: 27px;
	height: 20px;
	margin: 2px;
	background: url('/images/hamb2.png');
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mobile-dropdown {
	display: none;
	position: absolute;
	top: 59px;
	right: 0;
	width: 120px;
	background-color: #FFFFFF;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 999;
}

.mobile-dropdown.active {
	display: block;
}

.dropdown-content {
	display: flex;
	flex-direction: column;
}

.dropdown-content a {
	color: #969696;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	padding: 8px 16px;
	display: block;
}

.dropdown-content a:visited {
	color: #969696;
}

.dropdown-content a:hover {
	color: #DB1B23;
}

.menu-item {
	color: #969696;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	padding: 8px 12px;
	display: block;
}

.menu-item:hover {
	background-color: #f9f9f9;
	color: #DB1B23;
}

.main-item {
	cursor: pointer;
}

.sub-items {
	display: flex;
	flex-direction: column;
	padding-left: 8px;
	margin-top: 4px;
}

.sub-items a {
	color: #969696;
	text-decoration: none;
	font-size: 10px;
	font-weight: 500;
	padding: 4px 0;
	display: block;
}

.sub-items a:hover {
	color: #DB1B23;
}


/* Footer */
.footer {
	font-family: 'Roboto', sans-serif;
	background-color: #000000;
	color: #ffffff;
	width: 100%;
	margin-top: 110px;
	padding: 100px 0;
	font-size: 13px;
	line-height: 1.4;
}

.footer-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-company-info {
	flex: 1;
	max-width: 450px;
}

.footer-logo-img {
	display: block;
	width: 121px;
	height: 20px;
}

.footer-copyright {
	margin: 0 0 15px 0;
	font-size: 14px;
	font-weight: 700;
}

.footer-address p {
	margin: 0 0 5px 0;
	font-weight: 300;
}

.footer-address a {
	color: #ffffff;
	text-decoration: none;
}

.footer-address a:hover {
	text-decoration: underline;
}

.footer-sitemap-nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.sitemap-col {
	color: #ffffff;
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	line-height: 14px;
}

.sitemap-col:not(:last-child) {
	margin-right: 20px;
}

.sitemap-col a {
	color: #ffffff;
	text-decoration: none;
	margin-bottom: 10px;
	font-weight: 300;
}

.sitemap-col a.sitemap-category-link {
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 12px;
}

.sitemap-col a:hover {
	opacity: 0.7;
}


/* Tab Styles */
.main-container {
	padding: 4rem 3rem 2rem 3rem;
	max-width: 1000px;
	margin: 0 auto;
	width: 100%;
}

.main-tabs {
	position: relative;
}

.tab-container {
	display: flex;
	position: relative;
	border-bottom: 2px solid #999999;
	margin-bottom: 0;
}

.tab-button {
	width: 240px;
	background: none;
	border: none;
	padding: 8px 0;
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: 600;
	color: #999999;
	cursor: pointer;
	position: relative;
	text-align: center;
	transition: color 0.3s ease;
}

.tab-button:hover {
	color: #DB1B23;
}

.tab-button.active {
	color: #DB1B23;
}

.tab-button.active::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	height: 4px;
	background-color: #DB1B23;
}

.tab-content {
	display: none;
	padding: 2rem 0;
}

.tab-content.active {
	display: block;
}

/* Mobile Screen adjustments for Header and Footer */
@media (max-width: 768px) {
	.desktop-menu {
		display: none;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.header-container {
		padding: 0 15px;
	}

	.buynowButton {
		margin-right: 30px;
	}

	.main-container {
		padding: 2rem 1rem 1rem 1rem;
		max-width: 1000px;
		margin: 0 auto;
		width: 100%;
	}

	.tab-button {
		font-size: 18px;
		width: 150px;
	}

	.faq-container {
		padding: 2rem 1rem;
	}

	/* Footer Mobile Styles */
	.footer-container {
		flex-direction: column-reverse;
		align-items: center;
	}

	.footer-sitemap-nav {
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
		max-width: 400px;
		margin: 0 auto 30px;
		justify-content: space-between;
	}

	.sitemap-col {
		margin-bottom: 20px;
		padding: 0 5px;
	}

	.sitemap-col:last-child {
		margin-bottom: 0;
	}

	.footer-company-info {
		margin: 0 auto 30px;
		width: 100%;
		max-width: 400px;
	}
}