/* assets/template/tpl-18/css/main.css */

/* Align FAQ headers to the left */
.faq-section h2,
.faq-section h3 {
  text-align: left;
}

/* Base Styles and Variables */
:root {
  --primary: #059669;
  --primary-light: #10b981;
  --primary-dark: #047857;
  --secondary: #3b82f6;
  --secondary-light: #60a5fa;
  --secondary-dark: #2563eb;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --accent-dark: #7c3aed;
  --dark: #111827;
  --darker: #030712;
  --light: #f0fdf4;
  --lighter: #ffffff;
  --gray: #6b7280;
  --light-gray: #d1fae5;
  --dark-gray: #374151;
  --card-bg: #1e293b;
  --card-bg-hover: #334155;
  --body-bg: #0f172a;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
  --radius: 5px;
  --radius-lg: 15px;
  --radius-sm: 3px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  --max-width: 1200px;
}

/* Font Imports */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaE.woff2) format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaE.woff2) format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaE.woff2) format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaE.woff2) format("woff2");
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--body-bg);
  line-height: 1.6;
  background-image: radial-gradient(circle at 25% 25%, rgba(5, 150, 105, 0.15), transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.15), transparent 50%);
  background-attachment: fixed;
}

img {
  max-width: 360px;
  height: auto;
  border-radius: var(--radius);
}

a {
  text-decoration: none;
  color: var(--primary-light);
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header */
.aus_header {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--primary);
}

.aus_header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aus_header .logo {
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 15px;
}

.aus_header .logo img {
  max-height: 48px;
  width: auto;
}

/* Quick Navigation in Header */
.aus_header .quick-nav {
  display: flex;
  align-items: center;
}

.aus_header .quick-nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.aus_header .quick-nav-list a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 10px 0;
}

.aus_header .quick-nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: var(--transition);
  border-radius: 2px;
}

.aus_header .quick-nav-list a:hover {
  color: var(--primary-light);
  transform: translateY(-3px);
}

.aus_header .quick-nav-list a:hover::after {
  width: 100%;
}

/* Main Content */
.aus_main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Section Styles */
.aus_section {
  padding: 30px 0;
  position: relative;
  width: 100%;
}

.aus_section header {
  margin-bottom: 55px;
  text-align: center;
  position: relative;
}

.aus_section header h1,
.aus_section header h2 {
  color: var(--text-primary);
  display: block;
  width: fit-content;
  margin-left: 0;
  margin-right: auto;
}

.aus_section header h1 {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: bounce 2s ease-in-out infinite;
}

.aus_section header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.aus_section header p {
  color: var(--text-secondary);
  max-width: 850px;
  margin: 25px auto 0;
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Content Blocks */
.aus_content {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 45px;
  margin-bottom: 35px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.aus_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.aus_content:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.aus_content h2 {
  color: var(--text-primary);
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.aus_content h3 {
  color: var(--primary-light);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 30px 0 18px;
}

.aus_content p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.aus_content ul,
.aus_content ol {
  color: var(--text-secondary);
  margin: 18px 0;
  padding-left: 30px;
}

.aus_content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Image Floating Classes */
.f-left {
  float: left;
  margin: 0 30px 25px 0;
  max-width: 360px;
}

.f-right {
  float: right;
  margin: 0 0 25px 30px;
  max-width: 360px;
}

.f-center {
  display: block;
  margin: 25px auto;
  max-width: 360px;
}

/* Casino List */
.aus_casino_list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
  margin: 45px 0;
}

.aus_casino_item {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 30px;
  width: calc(33.333% - 24px);
  min-width: 340px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.aus_casino_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.aus_casino_item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
  0%,
  100% {
    transform: translateY(-10px) scale(1.03) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) scale(1.03) rotate(1deg);
  }
  75% {
    transform: translateY(-10px) scale(1.03) rotate(-1deg);
  }
}

.aus_casino_item .casino-logo {
  width: 100%;
  height: 120px;
  border-radius: var(--radius);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.aus_casino_item .casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  transition: var(--transition);
}

.aus_casino_item:hover .casino-logo img {
  transform: scale(1.1) rotate(2deg);
}

.aus_casino_item .casino-info h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
}

.aus_casino_item .casino-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.aus_casino_item .casino-features {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.aus_casino_item .casino-features li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.aus_casino_item .casino-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.1rem;
}

.aus_casino_item .casino-buttons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.aus_casino_item .btn {
  flex: 1;
  padding: 14px 22px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.aus_casino_item .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--lighter);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.aus_casino_item .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
  color: var(--lighter);
}

.aus_casino_item .btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--lighter);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.aus_casino_item .btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  color: var(--lighter);
}

/* FAQ Section */
.aus_faq {
  margin: 45px 0;
}

.aus_faq h3 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 30px;
  padding-right: 0;
}

.aus_faq_item {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.aus_faq_item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.aus_faq_question {
  padding: 25px 30px;
  cursor: pointer;
  display: block; /* заменено с flex */
  background: rgba(5, 150, 105, 0.1);
  transition: var(--transition);
  text-align: left; /* гарантируем выравнивание */
}

.aus_faq_question h3 {
  text-align: left;
  font-size: 1.6rem;
  color: #fff;
}

.aus_faq_question:hover {
  background: rgba(5, 150, 105, 0.2);
}

.aus_faq_question h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.aus_faq_toggle {
  color: var(--primary-light);
  font-size: 1.8rem;
  font-weight: bold;
  transition: var(--transition);
}

.aus_faq_answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aus_faq_answer.active {
  padding: 25px 30px;
  max-height: 600px;
}

.aus_faq_answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Sidebar */
.aus_sidebar {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 35px;
  margin-bottom: 35px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: sticky;
  top: 110px;
}

.aus_sidebar h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.aus_sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aus_sidebar li {
  margin-bottom: 15px;
}

.aus_sidebar a {
  color: var(--text-secondary);
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  display: block;
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.aus_sidebar a:hover,
.aus_sidebar a.active {
  color: var(--primary-light);
  background: rgba(5, 150, 105, 0.1);
  border-left-color: var(--primary);
  transform: translateX(8px);
}

/* Footer */
.aus_footer {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-secondary);
  padding: 60px 0 35px;
  margin-top: 70px;
  border-top: 4px solid var(--primary);
  position: relative;
}


.aus_footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 45px;
  margin-bottom: 45px;
}

.aus_footer .footer-section h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.aus_footer .footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.aus_footer .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aus_footer .footer-section li {
  margin-bottom: 12px;
}

.aus_footer .footer-section a {
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.aus_footer .footer-section a:hover {
  color: var(--primary-light);
  transform: translateX(8px);
}

.aus_footer .footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 35px;
  text-align: center;
}

.aus_footer .footer-bottom p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.aus_footer .footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.aus_footer .footer-logos img {
  max-height: 45px;
  opacity: 0.7;
  transition: var(--transition);
}

.aus_footer .footer-logos img:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: left;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 12px;
}
.mb-2 {
  margin-bottom: 24px;
}
.mb-3 {
  margin-bottom: 36px;
}
.mb-4 {
  margin-bottom: 48px;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 12px;
}
.mt-2 {
  margin-top: 24px;
}
.mt-3 {
  margin-top: 36px;
}
.mt-4 {
  margin-top: 48px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Popup Banner */
.popup-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 45px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--primary);
  z-index: 1000;
  display: none;
  text-align: center;
}

.popup-banner.active {
  display: block;
  animation: popupBounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupBounceIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
  70% {
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.popup-banner .close-popup {
  position: absolute;
  top: 18px;
  right: 25px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.popup-banner .close-popup:hover {
  color: var(--primary-light);
  transform: scale(1.3);
}

.popup-banner h3 {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.popup-banner p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.popup-banner .btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--lighter);
  padding: 18px 35px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.popup-banner .btn:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
  color: var(--lighter);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: none;
}

.popup-overlay.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



/* === Custom Heading Styles === */
h1 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #00ffe0;
  text-align: center;
  margin: 40px 0 30px;
  position: relative;
  z-index: 1;
}

h1::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 130%;
  background: linear-gradient(135deg, #0ff, #0080ff);
  opacity: 0.1;
  z-index: -1;
  border-radius: 10px;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.3; }
}

h2 {
  font-size: 2rem;
  color: #00ffe0;
  margin: 30px 0 20px;
}

h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 20px 0 15px;
  font-weight: 600;
}

/* FAQ fix: выравниваем h3 внутри FAQ-секции */
.aus_faq h3 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 30px;
  padding-right: 0;
}

/* Группировка h2 и h3 */
h2 {
  font-size: 2rem;
  color: #00ffe0;
  margin: 50px 0 10px;
  border-left: 4px solid #00ffe0;
  padding-left: 12px; /* увеличено с 12px до 20px */
}

h2 + h3 {
  margin-top: 5px;
}

h3 {
  font-size: 1.3rem;
  margin-left: 12px;
  color: #cccccc;
  font-weight: 500;
  margin-bottom: 10px;
}

.h-block {
  border: 2px solid #00ffe0;
  border-radius: 8px;
  padding: 20px;
  margin: 40px 0;
  background-color: #111;
}

.h-block h2 {
  font-size: 2rem;
  color: #00ffe0;
  margin-top: 0;
}

.h-block h3 {
  font-size: 1.3rem;
  color: #cccccc;
  margin-top: 10px;
}

h2, h3 {
  text-align: left;
}

h2, h3 {
  text-align: left;
  padding-right: 20px;
}

h2, h3 {
  display: block;
  width: fit-content;
  margin-left: 0;
  margin-right: auto;
}
.faq-section h3 {
  text-align: left !important;
}

.aus_faq_question h3 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
}

.faq-question {
  text-align: left !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 10px !important;
}



/* FAQ Header Alignment Override */
.aus_faq h2,
.aus_faq h3,
.aus_faq_question h3,
.faq-section h2,
.faq-section h3 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}


.aus_footer .icon use {
  fill: #ffffff !important;
}

.aus_footer .aus_logos_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.aus_footer .aus_logos_list .logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}
.aus_content h3 {
  display: block !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}
