@font-face {
  font-family: 'ABeeZee';
  font-style: normal;
  font-weight: 400;
  font-display: swap; /* Critical for avoiding render-blocking */
  src: url('/assets/fonts/ABeeZee-Regular.woff2') format('woff2'),
       url('/assets/fonts/ABeeZee-Regular.ttf') format('truetype'); /* Fallback */
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'ABeeZee', sans-serif;
	line-height: 1.8;
	color: #333;
	background: #ffffff;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 25px;
}

/* Typography */
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: #333; }

/* Links */
a {
	color: #d3005e;
	text-decoration: none;
	transition: color 0.3s ease;
}
a:hover { color: #004499; }

.pb-0{
	padding-bottom: 0px !important;
}
.mb-0{
	margin-bottom: 0px !important;
}

.text-center{
	text-align: center !important;
}


/* Hero Button Styles */
.btn-hero.button {
  position: relative;
  width: 100%;
  max-width: 500px;
  font-size: 1.5rem;
  text-align: center;
  overflow: hidden;
  margin: 1rem auto;
}

/* Hover and Active States */
.btn-hero.button-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: #861557;
  border-color: transparent;
}

.btn-hero.button-primary:active {
  transform: translateY(1px) scale(0.98);
}

/* Responsive Breakpoints */
@media screen and (max-width: 768px) {
  .btn-hero.button {
    max-width: 400px;
    padding: 9px 7px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 480px) {
  .btn-hero.button {
    max-width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 8px;
    margin: 1.5rem auto;
  }
}

/* Loading State (Optional) */
.btn-hero.button.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn-hero.button.is-loading::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -12px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-spinner 0.8s linear infinite;
}

@keyframes button-spinner {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Focus State */
.btn-hero.button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(162, 26, 112, 0.5);
}

/* Base Button Styles */
.button {
  display: inline-block;
  padding: 9px 7px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Primary Button */
.button-primary {
  background-color: #d3005e;
  color: #ffffff;
}

.button-primary:hover {
  background-color: #000;
  border-color: #000;
  color: #ffffff;
}

/* Secondary Button */
.button-secondary {
  background-color: transparent;
  border: 2px solid #d3005e;
  color: #d3005e;
}

.button-secondary:hover {
  background-color: #000;
  border-color: #000;
  color: #ffffff;
}

/* Text Alignment Utility Classes */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

@media (max-width: 768px) {
    .text-left,
    .text-right {
        text-align: center; /* Center text on smaller screens */
    }
}


/* Lists */
ul, ol {
	margin: 1.5rem 0;
	padding-left: 2rem;
}
li { 
	margin-bottom: 0.75rem;
	line-height: 1.8;
}

/* Tables */
table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	background: #fff;
}
th, td {
	padding: 0.5rem;
	border: 1px solid #eeeeee;
	text-align: Center;
}
th {
	background: #f8f9fa;
	font-weight: 600;
}
tr:nth-child(even) {
  background-color: #eeeeee;
}


/* Header Base Styles */
.main-header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: box-shadow 0.3s ease;
}

/* Add shadow when scrolling */
.main-header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  height: 70px;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
  max-width: 220px;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.9;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Header Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Navigation Styles */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
    margin-bottom: 0rem;
}

.nav-menu li a {
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #d3005e;
}

/* Active menu item */
.nav-menu li.active a {
  color: #d3005e;
}

.nav-menu li.active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d3005e;
  transform: scaleX(1);
}

/* Underline animation for menu items */
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d3005e;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu li a:hover::after {
  transform: scaleX(1);
}

/* Language Switcher Styles */
.lang-switcher {
  position: relative;
}

.current-lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.current-lang:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.current-lang svg {
  transition: transform 0.3s ease;
}

.current-lang[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.lang-switcher:focus-within .lang-dropdown,
.current-lang[aria-expanded="true"] + .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  margin: 0;
}

.lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.lang-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #d3005e;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 18px;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333333;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: 0;
}

.hamburger span {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::after {
  bottom: 0;
}

/* Hamburger animation when menu is open */
.menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Tablet Styles */
@media (max-width: 992px) {
  .header-content {
    height: 65px;
  }
  
  .nav-menu {
    gap: 1.25rem;
  }
  
  .logo {
    max-width: 180px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-content {
    height: 60px;
  }
  
  .logo {
    max-width: 160px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .header-right {
    gap: 0.75rem;
  }
  
  /* Mobile Navigation - Simple Dropdown */
  .main-nav {
    position: relative;
    order: 1;
  }
  
  .nav-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background: white;
    flex-direction: column;
    width: 250px;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1010;
    gap: 0.75rem;
  }
  
  /* Show menu when active */
  .main-nav.active .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
  }
  
  .nav-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.03);
  }
  
  /* Adjust active indicator for mobile */
  .nav-menu li.active a::after {
    display: none;
  }
  
  .nav-menu li.active a {
    font-weight: 600;
    background-color: rgba(0, 102, 204, 0.08);
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .logo {
    max-width: 140px;
  }
  
  .current-lang {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }
  
  .nav-menu {
    width: 220px;
  }
}


/* Hero Section */


/* Option 1: Sharp Diagonal Split */
.hero-banner.option1 {
    background: linear-gradient(113deg, #fff 60%, #d3005e 60.08% 100%);
    position: relative;
    overflow: hidden;
}

/* Option 5: Radial Focus */
.hero-banner.option5 {
    background: radial-gradient(circle at 75% 50%, #d3005e 25%, #fff 25%);
}

/* Option 5b: Interactive Mouse Follow */
.hero-banner.option5b {
    background: 
        radial-gradient(
            circle at var(--x) var(--y),
            #d3005e 20%,
            #fff 20%
        );
    transition: background 0.3s;
    cursor: pointer;
}


.hero-banner.option5c {
    background: 
        radial-gradient(circle at 75% 35%, #d3005e 15%, transparent 15%),
        radial-gradient(circle at 80% 60%, #d3005e22 25%, transparent 25%),
        radial-gradient(circle at 70% 45%, #d3005e11 35%, #fff 35%);
}

.hero-banner {
	padding: 50px 0;
	/*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
}

.hero-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text {
	max-width: 780px;
}

.hero-heading {
	font-size: 3.5rem;
	line-height: 1.1;
	margin-bottom: 1rem;
	color: #1a1a1a;
}
.hero-sub-heading {
	font-size: 2rem;
	line-height: 1.1;
	margin-bottom: 15px;
	color: #1a1a1a;
}

.hero-description {
	font-size: 1.rem;
	color: #4d4d4d;
	margin-bottom: 1rem;
	max-width: 600px;
}

.features-list {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	padding: 0;
	margin: 0;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0rem;
	transition: transform 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-3px);
}

.feature-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.feature-text {
	font-weight: 500;
	color: #333;
	font-size: 15px;
}

/* Hero Image Styles */
.hero-image {
    position: relative;
    height: 468px;
    width: 230px;
    margin-left: auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}



/* Desktop (992px and up) */
@media (min-width: 992px) {
    .hero-image {
        transform: translateY(-20px);
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
	.bg-tablet{
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
	}
	.hide-on-tablet {
        display: none !important;
    }
    .hero-image {
        height: 400px;
        width: 200px;
    }
	.hero-description {
		max-width: 100%;
	}
    
    .hero-content {
        gap: 40px;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
	.hide-on-mobile {
        display: none !important;
    }
	.bg-mobile{
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
	}
    .hero-image {
        width: 230px;
        height: 468px;
        margin: 0 auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
	.hero-description {
		max-width: 100%;
	}
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-image {
        width: 180px;
        height: 380px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
	.hero-heading {
		font-size: 3rem;
	}
}

@media (max-width: 992px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-text {
		max-width: 100%;
		text-align: center;
	}

	.features-list {
		align-items: center;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.hero-banner {
		padding: 40px 0;
	}

	.hero-heading {
		font-size: 2.5rem;
	}

	.hero-description {
		font-size: 1.1rem;
	}
	.feature-item {
		padding: 1rem;
	}
}

@media (max-width: 576px) {
	.hero-heading {
		font-size: 2rem;
		margin-bottom: 1rem;
	}
	.hero-sub-heading {
		font-size: 1.5rem;
	}
	
	.features-list {
        flex-wrap: nowrap;
		gap: 0.5rem;
    }

    .feature-item {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: auto;
		gap: 0.5rem;
		padding: 0.5rem;
    }

	.feature-icon {
		margin-bottom: 0.5rem;
	}
}

/* Content Sections */
.content-section {
	padding: 2rem 0;
}
.section-alt {
	background: linear-gradient(140deg, #d3005e14 60%, #d3005e 60.08% 100%);
}

/* ===== Updated Grid System ===== */
.grid-container {
    display: grid;
    gap: 2rem;
    margin: 1rem 0;
}

/* Grid Columns Variations */
.grid-container-1 { grid-template-columns: repeat(1, 1fr); }
.grid-container-2 { grid-template-columns: repeat(2, 1fr); }
.grid-container-3 { grid-template-columns: repeat(3, 1fr); }
.grid-container-4 { grid-template-columns: repeat(4, 1fr); }
.grid-container-5 { grid-template-columns: repeat(5, 1fr); }

/* Grid Items Common Styles */
.grid-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Section Specific Adjustments */
/* Benefits Section */
#benefits .grid-container-2 {
    align-items: stretch;
    text-align: left;
}
#benefits .grid-container-2 .grid-widget {
    align-items: start;
	background: #f8f9fa;
}

#benefits ul {
    list-style-position: outside;
    padding-left: 1rem;
	text-align: left;
	margin-top: 0px;
}

/* Safety + Final Thoughts Sections */
#safety .grid-container-1,
#final-thoughts .grid-container-1 {
    margin-left: 0;
}
#safety .grid-container-1 .grid-widget,
#final-thoughts .grid-container-1 .grid-widget {
    text-align: left;
}

#final-thoughts .grid-widget {
    background: #f8f9fa;
}

.section-recommended .button{
	margin-bottom: 0px;
}

/* Industry Insights (Blog) */
#industry-insights .grid-container-2 {
    gap: 2rem;
}

.blog-article {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-article .article-img img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-article .article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.blog-article .article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.blog-article .article-content p {
    flex-grow: 1;
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.blog-article .article-content .btn {
    transition: background 0.3s ease, transform 0.2s ease;
}

.blog-article .article-content .btn:hover {
    background: #004999;
	color: #fff;
    transform: translateY(-2px);
}

/* FAQ Section */

#home-faqs .grid-container-2 {
    gap: 2.5rem;
}
#home-faqs .grid-widget {
    align-items: start;
}

.faq-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
}


/* ===== Responsive Adjustments ===== */
@media (max-width: 1200px) {
    .grid-container-4 { grid-template-columns: repeat(3, 1fr); }
	.grid-container-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .grid-container-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-container-4 { grid-template-columns: repeat(2, 1fr); }
	.grid-container-5 { grid-template-columns: repeat(2, 1fr); }
    
    /* Benefits Section */
    #benefits .grid-container-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .grid-container-2,
    .grid-container-3,
    .grid-container-4 { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .blog-article img {
        height: 160px;
    }
    
    .footer-inner {
		text-align: center;
	}
}


.grid-container .grid-widget {
    padding: 1rem 1rem;
    background: #fff;
	border: 1px solid #eeeeee;
    border-radius: 5px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
	align-items: center;
}

.grid-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.grid-container h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

.grid-container p {
    color: #333;
    line-height: 1.8;
}
/* Optional hover effect */
.grid-container .grid-widget:hover {
    transform: translateY(-5px);
}


/* Grid Layout full with Alternating Sides */
.grid-container-full {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 1rem 0;
}

.grid-container-full .grid-widget {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 1.5rem;
	background: #f8f9fa;
	border-radius: 4px;
	border: 1px solid #eeeeee;
}

.grid-container-full .grid-widget:nth-child(even) {
    direction: rtl;
}

.grid-container-full .grid-widget:nth-child(even) > * {
    direction: ltr;
}

.grid-container-full .grid-icon {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    justify-self: center;
}

.grid-container-full .content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 1200px) {
    .grid-container-full .grid-widget {
        grid-template-columns: 4fr 8fr !important;
    }
}

@media (max-width: 992px) {
    .grid-container-full .grid-widget {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        text-align: center;
    }

    .grid-container-full .grid-widget:nth-child(even) {
        direction: ltr;
    }

    .grid-container-full .grid-icon {
        max-width: 70px;
        margin-bottom: 1rem;
    }

    .grid-container-full .content {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .grid-container-full {
        gap: 2rem;
    }
    
    .grid-container-full h3 {
        font-size: 1.3rem;
    }
    
    .grid-container-full p {
        font-size: 0.9rem;
    }
}

.grid-container-full .grid-widget {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-container-full .grid-widget:hover {
    transform: translateY(-3px);
}



/* Buttons */
.btn {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	background: #d3005e;
	color: #fff;
	border-radius: 4px;
	font-weight: 500;
	transition: background 0.3s ease;
}
.btn:hover {
	background: #0052a3;
}

/* Blog Layout */
.grid-container article .grid-featured-img {
    width: 100%;
}


/* Inner page content spacing */
.inner-page-content {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .inner-page-content {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}

@media (max-width: 768px) {
  .inner-page-content {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}

@media (max-width: 480px) {
  .inner-page-content {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}

/* Optional: Add a subtle background color to differentiate inner pages */
.inner-page-content {
  background-color: #ffffff;
}

/* Contact Page */
.contact-form-section {
  padding: 2rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #405de6;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
}

.form-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
}


/* Download Page */
.download-content {
	padding: 1rem 0;
}
.download-app-info h2{
	text-align: center;
}
.download-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.download-details .download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 800px;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  background-color: #d3005e;
  color: #fff;
  border: none;
  border-radius: 8px;
}
.download-details .download-button:hover {
  background-color: #8b1459;
}

@media (max-width: 1024px) {
  .download-details .download-button {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .download-details {
    gap: 1.75rem;
  }

  .download-details .download-button {
    max-width: 100%;
    font-size: 0.9rem;
  }
}


/* 404 Page */
.error-404 {
  padding: 6rem 0;
  text-align: center;
}

.error-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.error-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-image {
  margin-top: 3rem;
}

.error-image img {
  max-width: 100%;
  height: auto;
}

/* Footer */
footer.site-footer {
    padding: 30px 0px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.footer-nav a:hover {
  color: #d3005e;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e1e4e8;
  font-size: 0.9rem;
  color: #666;
}
.footer-bottom p {
  margin-bottom: 0px;
}

@media (max-width: 1024px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
    gap: 1rem;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-logo img {
    height: 35px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-bottom {
    padding-top: 1rem;
    font-size: 0.8rem;
  }
}


/* Mobile Styles */
@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}

	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	.hero-banner { padding: 2rem 0; }
	.content-section { padding: 2rem 0; }
}

@media (max-width: 480px) {
	.logo { font-size: 1.5rem; }
	.btn { width: 100%; text-align: center; }
}


/* Blog page */
.blog-page-grid {
  display: grid;
  gap: 1rem;
}

.blog-grid-widget {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem;
  border-bottom: 0.02415rem solid #ededed;
  transition: background-color 0.3s ease;
}

.blog-grid-widget:hover {
  background-color: #D9F0FF;
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-title {
  font-size: 1.75rem;
  line-height: 1.3;
}

.blog-featured-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .blog-grid-widget {
    grid-template-columns: 3fr 2fr;
  }
  
  .blog-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .blog-grid-widget {
    grid-template-columns: 1fr;
  }
  
  .blog-title {
    font-size: 1.25rem;
  }

  .blog-featured-img {
    order: 1;
  }
}

/* Blog detail page */
.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog-detail-grid-widget {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem;
}

.blog-detail-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  margin-bottom: 10px;
}

.blog-detail-content {
  font-size: 1rem;
  line-height: 1.6;
}

.blog-detail-content h2 {
  font-size: 1.75rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .blog-detail-content h2 {
	  font-size: 1.25rem;
	}
}

@media (max-width: 767px) {
  .blog-detail-content h2 {
	  font-size: 1rem;
	}
}
