/*
GBWITS - Main Stylesheet
Final Optimized Version
*/

body {
	font-family: 'Roboto', sans-serif;
	transition: all 0.5s;
	overflow-x: hidden; /* 防止移动端横向滚动 */
  }
  
  p {
	margin-bottom: 0px;
	font-size: 14px;
	color: #6a6a6a;
	line-height: 25px;
  }
  
  a {
	text-decoration: none !important;
  }
  
  ul {
	padding: 0;
	margin: 0;
	list-style: none;
  }
  
  /* =========================================
	 Buttons
	 ========================================= */
  a.main-button {
	outline: none;
	cursor: pointer;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	padding: 0px 25px;
	border: none;
	margin-left: 10px;
	background-color: #00bcd4;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.5s;
	border-radius: 5px;
  }
  
  a.main-button:hover {
	background-color: #00a4b9;
  }
  
  a.gradient-button {
	outline: none;
	cursor: pointer;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	padding: 0px 25px;
	border: none;
	margin-left: 10px;
	background: rgb(114, 2, 187);
	background: linear-gradient(145deg, rgba(114, 2, 187, 1) 0%, rgba(50, 100, 245, 1) 100%);
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.5s;
	border-radius: 5px;
  }
  
  a.gradient-button:hover {
	background: rgb(114, 2, 187);
	background: linear-gradient(145deg, rgba(50, 100, 245, 1) 0%, rgba(114, 2, 187, 1) 100%);
  }
  
  /* =========================================
	 Headings & Page Headers
	 ========================================= */
  .section-heading {
	margin-bottom: 80px;
	text-align: center;
  }
  
  .section-heading span {
	color: #00bcd4;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	display: inline-block;
	margin-top: 0px;
  }
  
  .section-heading h2 {
	color: #1e1e1e;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-top: 10px;
	margin-bottom: 15px;
  }
  
  .section-heading p {
	font-size: 15px;
  }
  
  .page-heading {
	background-image: url(../images/heading-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding: 230px 0px 180px 0px;
  }
  
  .page-heading h1 {
	color: #fff;
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
  }
  
  .page-heading p {
	color: #fff;
	letter-spacing: 0.5px;
  }
  
  .page-heading p a {
	color: #fff;
	font-size: 15px;
	margin-right: 5px;
  }
  
  .page-heading p span {
	color: #fff;
	opacity: 0.75;
	margin-left: 5px;
  }
  
  /* =========================================
	 Preloader (Requested to KEEP)
	 ========================================= */
  #preloader {
	overflow: hidden;
	background: linear-gradient(145deg, rgba(114, 2, 187, 1) 0%, rgba(50, 100, 245, 1) 100%);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: fixed;
	z-index: 9999999;
	color: #fff;
  }
  
  #preloader .jumper {
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	position: absolute;
	margin: auto;
	width: 50px;
	height: 50px;
  }
  
  #preloader .jumper>div {
	background-color: #fff;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	position: absolute;
	opacity: 0;
	width: 50px;
	height: 50px;
	-webkit-animation: jumper 1s 0s linear infinite;
	animation: jumper 1s 0s linear infinite;
  }
  
  #preloader .jumper>div:nth-child(2) {
	-webkit-animation-delay: 0.33333s;
	animation-delay: 0.33333s;
  }
  
  #preloader .jumper>div:nth-child(3) {
	-webkit-animation-delay: 0.66666s;
	animation-delay: 0.66666s;
  }
  
  @-webkit-keyframes jumper {
	0% { opacity: 0; -webkit-transform: scale(0); transform: scale(0); }
	5% { opacity: 1; }
	100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0; }
  }
  
  @keyframes jumper {
	0% { opacity: 0; -webkit-transform: scale(0); transform: scale(0); }
	5% { opacity: 1; }
	100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0; }
  }
  
  /* =========================================
	 Navigation / Header
	 ========================================= */
  header {
	position: fixed;
	z-index: 99999;
	width: 100%;
	background-color: transparent !important;
	border-bottom: 1px solid rgba(250, 250, 250, 0.30);
	height: 80px;
	transition: all .5s ease 0s;
  }
  
  .background-header {
	background-color: #fff !important;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
  }
  
  .background-header .navbar-brand span,
  .background-header .navbar-nav a.nav-link {
	color: #1e1e1e !important;
  }
  
  .background-header .navbar-nav .nav-link:hover,
  .background-header .navbar-nav .active>.nav-link,
  .background-header .navbar-nav .nav-link.active {
	color: #00bcd4 !important;
  }
  
  .navbar .navbar-brand {
	float: left;
	margin-top: 12px;
	outline: none;
  }
  
  /* Logo Text Style (Updated) */
  .navbar .navbar-brand span {
	font-size: 28px; 
	font-weight: 700; 
	color: #fff;
	text-transform: uppercase;
	transition: all .3s ease 0s;
  }
  
  .navbar .navbar-brand em {
	font-style: normal;
	font-size: 16px;
  }
  
  #navbarResponsive {
	z-index: 999;
  }
  
  .navbar-collapse {
	text-align: center;
  }
  
  .navbar .navbar-nav .nav-item {
	margin: 0px 15px;
  }
  
  .navbar .navbar-nav a.nav-link {
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.5px;
	color: #fff;
	transition: all 0.5s;
	margin-top: 5px;
  }
  
  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .active>.nav-link,
  .navbar .navbar-nav .nav-link.active {
	color: #00bcd4;
  }
  
  .navbar .navbar-toggler {
	border-color: #fff;
	background-color: #fff;
	height: 36px;
	outline: none;
	border-radius: 0px;
	position: absolute;
	right: 30px;
	top: 20px;
  }
  
  .navbar .navbar-toggler-icon:after {
	content: '\f0c9';
	color: #00bcd4;
	font-size: 18px;
	line-height: 26px;
	font-family: 'FontAwesome';
  }
  
  /* =========================================
	 Banner Area (Index)
	 ========================================= */
  .banner {
	background-image: url(../images/banner-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 300px 0px;
	background-position: center center;
  }
  
  .banner .caption {
	text-align: center;
  }
  
  .banner .caption h1 {
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 0px;
	margin-bottom: 50px;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
  }
  
  /* =========================================
	 Features Grid Section (General)
	 ========================================= */
  .features-grid-section {
	margin-top: 140px;
  }
  
  .features-grid-section .section-heading h2 {
	color: #1e1e1e;
  }
  
  .features-grid-section .feature-item-card {
	background-color: #f7f7f7;
	border-radius: 5px;
	padding: 50px 40px;
	text-align: center;
	margin-bottom: 30px;
  }
  
  .features-grid-section .feature-item-card i {
	color: #fff;
	background-color: #00bcd4;
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	border-radius: 50%;
	font-size: 32px;
  }
  
  .features-grid-section .feature-item-card h4 {
	margin-top: 35px;
	font-size: 19px;
	color: #1e1e1e;
	text-transform: capitalize;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
  }
  
  .features-grid-section .title-height-fix {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .features-grid-section .desc-height-fix {
	min-height: 90px;
  }
  
  /* =========================================
	 Core Advantages Section (Index)
	 (Renamed from pricing-section)
	 ========================================= */
  .core-advantages-section {
	margin-top: 140px;
	position: relative;
	padding-bottom: 100px;
  }
  
  .background-image-advantages {
	background-image: url(../images/pricing-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 500px;
	position: absolute;
	width: 100%;
	z-index: -1;
  }
  
  .core-advantages-section .section-heading {
	text-align: center;
	margin-top: 80px;
  }
  
  .core-advantages-section .section-heading h2,
  .core-advantages-section .section-heading p {
	color: #fff;
  }
  
  .advantage-item {
	background-color: #fff;
	text-align: center;
	padding: 50px 50px 30px 50px;
	position: relative;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	border-radius: 8px;
	height: 100%;
  }
  
  .advantage-item h4 {
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 700;
	color: #1e1e1e;
	letter-spacing: 0.5px;
	margin-bottom: 0;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
  }
  
  .advantage-item .advantage-icon {
	margin: 20px 0 30px 0;
	text-align: center;
  }
  
  .advantage-item .advantage-icon i {
	font-size: 60px;
  }
  
  /* Helper colors for icons */
  .text-cyan { color: #21d4fd; }
  .text-purple { color: #b721ff; }
  
  .advantage-item p {
	min-height: 100px;
  }
  
  .advantage-item .dev {
	width: 100%;
	height: 1px;
	background-color: #eee;
	margin: 35px 0px 30px 0px;
  }
  
  .advantage-item ul {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
  }
  
  .advantage-item ul li {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 16px;
	color: #6a6a6a;
  }
  
  .advantage-item ul li i {
	font-size: 14px;
	margin-right: 8px;
	color: #491bb1;
  }
  
  /* =========================================
	 Application Features (Index)
	 ========================================= */
  .app-features-section {
	margin-top: 160px;
  }
  
  .app-features-section .section-heading {
	text-align: center;
  }
  
  .app-features-section .section-heading h2 {
	color: #1e1e1e;
  }
  
  .app-features-section .app-feature-item {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	padding: 30px;
	margin-bottom: 30px;
	transition: all 0.3s;
  }
  
  .app-features-section .app-feature-item:hover {
	transform: translateY(-5px);
  }
  
  .app-features-section .app-feature-item .icon {
	float: left;
	margin-top: 12px;
  }
  
  .app-features-section .app-feature-item .icon img {
	max-width: 80px;
	margin-right: 30px;
  }
  
  .app-features-section .app-feature-item h4 {
	font-size: 18px;
	color: #1e1e1e;
	letter-spacing: 0.5px;
	font-weight: 700;
  }
  
  .app-features-section .app-feature-item p {
	margin-left: 106px;
  }
  
  /* =========================================
	 FAQ Section
	 ========================================= */
  .faq-section {
	padding: 80px 0;
	background: #f7f7f7;
  }
  
  .faq-heading {
	text-align: center;
  }
  
  .card {
	border: none;
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .card-header {
	background-color: #fff;
	border-bottom: 1px solid #eee;
  }
  
  .card-header button {
	text-decoration: none;
	color: #333;
	font-weight: 600;
	text-align: left;
	font-size: 16px;
	padding: 20px;
	white-space: normal; /* 允许FAQ标题换行 */
  }
  
  .card-header button:hover {
	color: #00bcd4;
  }
  
  .card-body {
	font-size: 15px;
	line-height: 1.7;
	color: #666;
	padding: 25px;
  }
  
  /* =========================================
	 Testimonials
	 ========================================= */
  .testimonials-section {
	margin-top: 140px;
	background-color: #f7f7f7;
	padding: 100px 0px;
  }
  
  .testimonials-section .section-heading {
	text-align: center;
  }
  
  .testimonials-section .section-heading h2 {
	color: #1e1e1e;
  }
  
  .testimonial-item {
	text-align: center;
  }
  
  .testimonial-item i {
	width: 60px;
	height: 60px;
	display: inline-block;
	text-align: center;
	line-height: 60px;
	color: #fff;
	background: linear-gradient(145deg, rgba(114, 2, 187, 1) 0%, rgba(50, 100, 245, 1) 100%);
	border-radius: 50%;
	font-size: 18px;
	margin-bottom: 45px;
  }
  
  .testimonial-item p {
	font-size: 19px;
	font-weight: 300;
	font-style: italic;
	line-height: 35px;
	margin-bottom: 40px;
  }
  
  .testimonial-item h4 {
	font-size: 19px;
	font-weight: 700;
	color: #1e1e1e;
	letter-spacing: 0.5px;
	margin-bottom: 0px;
  }
  
  .testimonial-item span {
	display: inline-block;
	margin-top: 8px;
	font-size: 15px;
	color: #00bcd4;
  }
  
  .owl-testimonials .owl-dots {
	display: flex;
	justify-content: center;
	margin-top: 50px
  }
  
  .owl-testimonials .owl-dots .owl-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin: 0 4px;
	background-color: #7bd9e5;
	outline: none;
  }
  
  .owl-testimonials .owl-dots .owl-dot.active {
	background-color: #00bcd4;
  }
  
  /* =========================================
	 Footer
	 ========================================= */
  footer {
	background-image: url(../images/footer-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 80px 0px 60px 0px;
  }
  
  footer .footer-heading h2 {
	color: #fff;
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
  }
  
  footer p, footer a {
	color: #fff;
  }
  
  footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
  }
  
  footer ul li {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.5px;
  }
  
  footer ul li a:hover {
	opacity: 0.75;
  }
  
  footer .sub-footer {
	text-align: center;
	margin-top: 10px;
	padding-top: 10px;
  }
  
  /* =========================================
	 Split Content Section 
	 ========================================= */
  .split-content-section {
	padding: 140px 0px;
	background-color: #f7f7f7;
  }
  
  .split-content-section .left-image {
	margin-right: 30px;
  }
  
  .split-content-section .right-content {
	margin-left: 30px;
  }
  
  .split-content-section .left-image img {
	max-width: 100%;
	overflow: hidden;
  }
  
  .split-content-section .section-heading h2 {
	color: #1e1e1e;
  }
  
  .split-content-section .section-heading {
	margin-bottom: 40px;
	border-bottom: 3px solid #eee;
	padding-bottom: 40px;
  }
  
  /* --- Tab Navigation Styles --- */
  #tabs {
	text-align: center;
	width: 100%;
  }
  
  .custom-tab-nav {
	list-style: none;
	padding: 6px !important;
	margin: 0 auto 30px auto;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color: #f1f2f6;
	border-radius: 50px;
	box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
	border: 1px solid #e0e0e0;
	max-width: 100%;
	box-sizing: border-box;
  }
  
  .custom-tab-nav li {
	margin: 0;
  }
  
  .custom-tab-nav li a {
	display: block;
	padding: 10px 30px;
	color: #666;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	border-radius: 40px;
	background: transparent;
	transition: all 0.3s ease;
	border: none;
	display: flex;
	align-items: center;
	gap: 8px;
  }
  
  .custom-tab-nav li a:hover {
	color: #333;
	background-color: rgba(255, 255, 255, 0.5);
  }
  
  .custom-tab-nav li a.active {
	background-color: #21d4fd;
	background-image: linear-gradient(135deg, #21d4fd 0%, #b721ff 100%);
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	transform: scale(1.02);
  }
  
  .custom-tab-nav i {
	margin-right: 5px;
  }
  
  .tabs-content {
	text-align: left;
	display: inline-block;
	transition: all 0.3s;
	width: 100%;
  }
  
  /* Hide all articles by default, JS will show the active one */
  .tabs-content article {
	display: none;
  }
  .tabs-content article.active-content {
	display: block;
  }
  
  .tab-heading {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
	text-align: center;
  }
  
  .tab-text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 15px;
  }
  
  /* Data Coverage Image Transition */
  .fade-img {
	transition: opacity 0.3s ease-in-out;
	opacity: 1;
  }
  
  .fade-img.hidden {
	opacity: 0;
  }
  
  /* SaaS Dashboard Image */
  .saas-dashboard-img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border: 1px solid #eee;
	transition: transform 0.3s ease;
  }
  
  .saas-dashboard-img:hover {
	transform: translateY(-5px);
  }
  
  /* =========================================
	 Core Modules Section (Products)
	 ========================================= */
  .core-modules-section {
	margin-top: 140px;
  }
  
  .core-modules-section .section-heading {
	text-align: center;
  }
  
  .core-modules-section .section-heading h2 {
	color: #1e1e1e;
  }
  
  .module-item {
	cursor: pointer;
	margin-bottom: 30px;
	background: #f7f7f7;
	padding: 40px 30px;
	text-align: center;
	border-radius: 8px;
	transition: all 0.3s;
	height: 100%;
  }
  
  .module-item:hover {
	background: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transform: translateY(-5px);
  }
  
  .module-item .module-icon {
	width: 80px;
	height: auto;
	display: block;
	margin: 0 auto 20px auto;
	transition: all 0.5s;
  }
  
  .module-item .down-content {
	background-color: transparent; /* Changed from #f7f7f7 to inherit parent */
	padding: 0;
  }
  
  .module-item h4 {
	font-size: 18px;
	font-weight: 700;
	color: #1e1e1e;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
  }
  
  .module-item span {
	display: inline-block;
	font-size: 14px;
	color: #00bcd4;
	margin-bottom: 15px;
  }
  
  .module-item p {
	margin-top: 15px;
	color: #777;
  }
  
  /* =========================================
	 Contact Us Page
	 ========================================= */
  .contact-us {
	margin-top: 140px;
	margin-bottom: 60px;
  }
  
  .contact-us .contact-form {
	margin-right: 30px;
  }
  
  .contact-us .right-content {
	margin-left: 30px;
  }
  
  .contact-us .section-heading h2 {
	color: #1e1e1e;
  }
  
  .contact-us .section-heading {
	margin-bottom: 40px;
	border-bottom: 3px solid #eee;
	padding-bottom: 40px;
  }
  
  .contact-form input,
  .contact-form textarea {
	letter-spacing: 0.5px;
	font-weight: 500;
	color: #6a6a6a;
	font-size: 14px;
	border: 1px solid #ddd;
	background-color: #fff;
	width: 100%;
	outline: none;
	padding: 15px;
	-webkit-appearance: none;
	appearance: none;
	margin-bottom: 30px;
	border-radius: 5px;
  }
  
  .contact-form textarea {
	height: 150px;
	resize: none;
  }
  
  .contact-form button {
	outline: none;
	cursor: pointer;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	padding: 0px 20px;
	border: none;
	background-color: #00bcd4;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.5s;
	width: 100%;
	border-radius: 5px;
  }
  
  .contact-form button:hover {
	background-color: #00a4b9;
  }
  
  .contact-us .right-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
  }
  
  .contact-us .right-content ul li {
	display: block;
	margin-bottom: 30px;
	font-size: 14px;
	font-weight: 600;
	color: #1e1e1e;
	letter-spacing: 0.5px;
  }
  
  .contact-us .right-content ul i {
	width: 27px;
	height: 27px;
	display: inline-block;
	text-align: center;
	line-height: 27px;
	background-color: #00bcd4;
	border-radius: 50%;
	color: #fff;
	margin-right: 15px;
	font-size: 24px;
  }
  
  /* =========================================
	 Responsive Style
	 ========================================= */
  @media (max-width: 1200px) {
	.contact-us .right-content ul li {
	  text-align: center;
	  width: 100%;
	}
  }
  
  @media (max-width: 991px) {
	.navbar .navbar-brand {
	  position: absolute;
	  left: 30px;
	  top: 10px;
	}
	#navbarResponsive {
	  z-index: 99999;
	  position: absolute;
	  top: 80px;
	  left: 0;
	  width: 100%;
	  text-align: center;
	  background-color: #fff;
	  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
	}
	.navbar .navbar-nav .nav-item {
	  border-bottom: 1px solid #eee;
	}
	.navbar .navbar-nav a.nav-link {
	  padding: 15px 0px;
	  color: #1e1e1e !important;
	}
	.navbar .navbar-nav .active>.nav-link {
	  color: #00bcd4 !important;
	}
	.split-content-section .left-image {
	  margin-bottom: 30px;
	  margin-right: 0px;
	}
	.split-content-section .right-content,
	.contact-us .right-content {
	  margin-left: 0px;
	}
	.contact-us .contact-form {
	  margin-right: 0px;
	  margin-bottom: 45px;
	}
  }
  
  @media (max-width: 768px) {
	.custom-tab-nav {
	  border-radius: 15px;
	  display: flex;
	  width: 100%;
	}
  
	.custom-tab-nav li {
	  flex: 1;
	  text-align: center;
	}
  
	.custom-tab-nav li a {
	  padding: 10px 5px;
	  font-size: 14px;
	  border-radius: 10px;
	  justify-content: center;
	}
	
	/* Optimize banner title for mobile */
	.page-heading h1 {
	  font-size: 32px;
	}
  }
  
  @media (max-width: 576px) {
	.navbar .navbar-toggler {
	  right: 20px;
	}
  }

  /* =========================================
   Logo Style Patch (Moved from HTML to CSS)
   ========================================= */

  /* 1. 默认状态（透明背景时）：Logo 必须是白色 */
  .navbar .navbar-brand span {
	font-size: 28px;
	font-weight: 700;
	color: #fff !important; /* 强制白色 */
	transition: all 0.3s ease;
  }
  
  /* 2. 滚动状态（白背景时）：Logo 必须变回黑色 */
  /* 这一步非常重要，否则滚动后看不见 Logo */
  .background-header .navbar-brand span {
	color: #1e1e1e !important; /* 强制深色 */
  }

/* ====== Appended extracted/converted styles ====== */
/* generated from products.html inline style */
.products__inline--1 { padding: 80px 0; }

/* generated from products.html inline style */
.products__inline--2 { padding-bottom: 80px; }

/* generated from products.html inline style */
.products__inline--3 { padding-left: 20px; }

/* generated from products.html inline style */
.products__inline--4 { margin-bottom: 30px; }

/* generated from products.html inline style */
.products__inline--5 { font-weight: 700; }

/* generated from data.html inline style */
.data__inline--1 { padding: 80px 0; }

/* generated from data.html inline style */
.data__inline--2 { max-width:100%; height:auto; }

/* generated from data.html inline style */
.data__inline--3 { margin-top:50px; }

/* generated from data.html inline style */
.data__inline--4 { margin-bottom: 30px; }

/* generated from contact.html inline style */
.contact__inline--1 { font-size: 12px; color: #777; }

/* generated from contact.html inline style */
.contact__inline--2 { padding-left: 20px; }

/* generated from contact.html inline style */
.contact__inline--3 { margin-top: 10px; font-size: 28px; }

/* generated from contact.html inline style */
.contact__inline--4 { margin-top: 15px; color: #666; line-height: 1.6; }

/* generated from contact.html inline style */
.contact__inline--5 { list-style: none; padding: 0; margin: 0; }

/* generated from contact.html inline style */
.contact__inline--6 { display: flex; align-items: start; margin-bottom: 15px; }

/* generated from contact.html inline style */
.contact__inline--7 { color: #007bff; margin-right: 12px; font-size: 18px; line-height: 1.5; }

/* generated from contact.html inline style */
.contact__inline--8 { font-size: 15px; color: #444; line-height: 1.5; }

/* generated from contact.html inline style */
.contact__inline--9 { background-color: #f9f9f9; padding: 25px; border-radius: 8px; display: flex; align-items: center; }

/* generated from contact.html inline style */
.contact__inline--10 { margin-right: 20px; }

/* generated from contact.html inline style */
.contact__inline--11 { width: 50px; height: 50px; background-color: #007bff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* generated from contact.html inline style */
.contact__inline--12 { font-size: 24px; color: #fff; }

/* generated from contact.html inline style */
.contact__inline--13 { margin: 0 0 5px 0; font-size: 12px; text-transform: uppercase; color: #999; letter-spacing: 1px; }

/* generated from contact.html inline style */
.contact__inline--14 { font-size: 20px; font-weight: 700; color: #333; text-decoration: none; line-height: 1.2; display: block; }

/* generated from contact.html inline style */
.contact__inline--15 { margin: 5px 0 0 0; font-size: 13px; color: #777; }

