
:root {
    --font-primary: 'Montserrat', sans-serif;
    --color-primary: #4a90e2;
    --color-secondary: #6ba3f0;
    --color-accent: #5cb85c;
    --color-text: #3c3c3c;
    --color-bg: #F6F6F6;
  
    --primary-blue: #4a90e2;        /* Softer blue */
    --secondary-blue: #6ba3f0;      /* Lighter blue */
    --accent-green: #5cb85c;        /* Muted green */
    --light-gray: #f8f9fa;          /* Very light gray backgrounds */
    --medium-gray: #e9ecef;         /* Card backgrounds */
    --dark-gray: #495057;           /* Text color */
    --border-gray: #dee2e6;         /* Borders */
    --success-green: #28a745;       /* Success states */

    color: var(--color-text)
  }


.hero {
    background: var(--medium-gray);
}

.hero .h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  color: var(--color-text) !important;
}

.hero ul {
    list-style-type: none;
    padding: 0;
}

.hero li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 26px;
    font-size: 20px;
    line-height: 25px;
}

.hero li:last-of-type {
    margin-bottom: 0;
}

.hero li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    display: block;
    width: 16px;
    height: 16px;
    background: url('/images/try/hero-tick.svg') center/contain no-repeat;
}

.herop {
    font-size: 16px !important;
    line-height: 30px !important;
    margin-bottom: 32px;
font-style: normal;
font-weight: 400;
letter-spacing: 0.5px;
line-height: 24px;
}

.logo {
    width: 151px;
    margin: 25px 0 83px;
}

form {
    position: relative;
    background: var(--light-gray);
    padding: 49px 24px 32px;
    box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
    border-radius: 20px;
    overflow: hidden;
    bottom: -150px;
    margin-top: -150px;
}

form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 26px;
    background: var(--color-secondary);
}
 form .btn-mc-outline-primary {
     width: 306px;
     max-width: 100%;
 }
