
  :root {
    --ale-navy: #132848;
    --ale-dark: #0B2857;
    --ale-white: #ffffff;
    --ale-black: #050505;
    --ale-warm: #F3F1EC;
    --ale-warm-2: #F0EEE9;
    --ale-muted-dark: rgba(0,0,0,0.58);
    --ale-muted-light: rgba(255,255,255,0.72);
    --ale-border-dark: rgba(19,40,72,0.10);
    --ale-border-light: rgba(255,255,255,0.14);
    --ale-gradient: linear-gradient(135deg, #FF6A28 0%, #FE2F57 100%);
    --ale-soft-gradient: linear-gradient(135deg, rgba(255,106,40,0.12), rgba(254,47,87,0.10));
    --ale-radius-xl: 30px;
    --ale-radius-lg: 24px;
    --ale-radius-md: 18px;
    --ale-shadow-dark: 0 24px 70px rgba(7,18,36,0.22);
    --ale-shadow-soft: 0 20px 55px rgba(7,18,36,0.14);
  }

  body {
    background: var(--ale-warm);
  }

  .ale-import-style-section {
    width: 100%;
    padding: 7rem 20px;
    font-family: "TildaSans", "Tilda Sans", Arial, sans-serif !important;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .ale-import-style-section *,
  .ale-import-style-section *::before,
  .ale-import-style-section *::after {
    box-sizing: border-box;
    font-family: "TildaSans", "Tilda Sans", Arial, sans-serif !important;
  }

  .ale-import-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }

  .ale-dark-section {
    background:
      radial-gradient(circle at 18% 18%, rgba(255,106,40,0.18), transparent 34%),
      radial-gradient(circle at 82% 78%, rgba(254,47,87,0.14), transparent 38%),
      linear-gradient(135deg, #132848 0%, #0B2857 100%);
    color: var(--ale-white);
  }

  .ale-warm-section {
    background:
      radial-gradient(circle at 16% 18%, rgba(255,106,40,0.12), transparent 34%),
      radial-gradient(circle at 84% 76%, rgba(254,47,87,0.10), transparent 38%),
      var(--ale-warm);
    color: var(--ale-black);
  }

  .ale-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
  }

  .ale-section-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ale-gradient);
    flex: 0 0 auto;
  }

  .ale-dark-section .ale-section-label {
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.90);
  }

  .ale-warm-section .ale-section-label {
    background: rgba(19,40,72,0.07);
    color: rgba(19,40,72,0.78);
  }

  .ale-section-title {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.045em;
  }

  .ale-dark-section .ale-section-title {
    color: var(--ale-white);
    text-shadow: 0 16px 36px rgba(0,0,0,0.20);
  }

  .ale-warm-section .ale-section-title {
    color: var(--ale-black);
  }

  .ale-section-title span {
    color: transparent;
    background: var(--ale-gradient);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .ale-section-subtitle {
    max-width: 740px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.58;
    font-weight: 500;
  }

  .ale-dark-section .ale-section-subtitle {
    color: rgba(255,255,255,0.72);
  }

  .ale-warm-section .ale-section-subtitle {
    color: rgba(0,0,0,0.58);
  }

  .ale-section-header {
    max-width: 850px;
    margin: 0 auto 56px;
    text-align: center;
  }

  .ale-card-light {
    border-radius: var(--ale-radius-xl);
    background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(240,238,233,0.96));
    color: var(--ale-black);
    border: 1px solid rgba(19,40,72,0.10);
    box-shadow: var(--ale-shadow-soft);
    overflow: hidden;
  }

  .ale-card-dark {
    border-radius: var(--ale-radius-xl);
    background: linear-gradient(135deg, rgba(19,40,72,0.98), rgba(11,40,87,0.96));
    color: var(--ale-white);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: var(--ale-shadow-dark);
    overflow: hidden;
  }

  .ale-gradient-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 16px 28px;
    border-radius: 999px;
    background: var(--ale-gradient);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-decoration: none !important;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(254,47,87,0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  }

  .ale-gradient-button:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    filter: saturate(1.06);
    box-shadow: 0 20px 42px rgba(254,47,87,0.30);
  }

  @media (max-width: 960px) {
    .ale-import-style-section {
      padding: 5.8rem 20px;
    }

    .ale-section-title {
      font-size: 38px;
    }
  }

  @media (max-width: 640px) {
    .ale-import-style-section {
      padding: 4.5rem 16px;
    }

    .ale-section-title {
      font-size: 30px;
      line-height: 1.12;
    }

    .ale-section-subtitle {
      font-size: 15px;
    }
  }
</style>