/* Root variables */
:root {
  --color-text: #1a1d56;
  --color-muted: #92929e;
  --color-bg: #ffffff;
  --color-light: #f6f8fa;
  --color-primary: #4639e1;

  --font-base: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 60px;
}

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

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-sm)!important;
}

section {
  padding: var(--space-lg) 0!important;
}

.center {
  text-align: center;
}

/* Typography */
h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

p {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Hero */
.ac-hero {
  background: var(--color-light)!important;

}

.ac-logo {
  width: 220px;
  margin: 0px auto var(--space-md)!important
}

/* Icons */
.ac-icons .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.ac-icon {
  max-width: 200px;
  text-align: center;
}

.ac-icon img {
  width: 70px;
  margin-bottom: var(--space-sm)!important;
}

.ac-icon h6 {
  font-size: 14px;
  font-weight: 400;
}

.ac-authorized {
  background: var(--color-light)!important;
}

/* Button */
.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--color-text);
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.button:hover {
  background: var(--color-text);
  color: #fff;
}

/* Utilities */
.text-muted {
  color: var(--color-muted);
}

.text-primary {
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 15px;
  }

  .ac-icons .row {
    flex-direction: column;
    align-items: center;
  }
}