/* define css variables */
@import url('https://fonts.cdnfonts.com/css/satoshi');

:root {
    --brand-color: #15ba9b;
    --brand-text: #324C56;
    --brand-lightray: #DBDFE1;
    --brand-darkgrey: hwb(200 86% 24%);
    --bg-color: #0E2C38;
}



* {
    font-family: 'Satoshi', sans-serif;
}

body {
    padding: 16px;
    margin: 0;
    background-color: var(--bg-color);
    color: white;
}

h1 {
    color: var(--brand-color);
    font-size: 28px;
    line-height: 36px;
    margin-top: 52px;
}

h1 img {
    aspect-ratio: 1272/263;
    width: 433px;
    max-width: 80%;
}

article {
    text-align: center;
}

h2 {
    color: var(--brand-color);
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 16px;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

aside a {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 24px;
}

aside a {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 24px;
}

img.service {
    display: block;
    width: 100%;
}

@media screen and (min-width:480px) {
    img.service {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

aside a.eml {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0;
    margin-top: 20px;
}



a.btn {
    margin-top: 40px;
    appearance: none;
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    -webkit-appearance: none;
    border: 0;
    text-decoration: none;
    border-radius: 40px;
    padding: 8px 20px;
    font-weight: bold;
    background-color: var(--brand-text);
    color: white;
}

aside a.btn:hover {
    background-color: var(--brand-color);
    transition: all 0.2s;
}

.chat-example {
    background: rgba(255, 255, 255, 0.1);
    color: black;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.chat-example h4 {
    margin-top: 0;
    color: #333;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    margin: 10px 0;
    position: relative;
}

.message .time {
    font-size: 0.8em;
    color: #666;
    display: block;
    margin-top: 5px;
}

.message.customer {
    background: #e3f2fd;
    margin-right: auto;
    text-align: left;
}

.message.agent {
    background: #e8f5e9;
    margin-left: auto;
    text-align: right;
}

h3 {
    margin-top: 2em;
    color: #333;
}

ul {
    margin-left: 0;
    line-height: 2;
    list-style: none;
    padding: 0;
    font-size: 20px;
}

li {
    margin-bottom: 1em;
}

.hero {
    position: relative;

    background-image: url(../custom-crm/hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    width: 100%;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    width: 90%;
    max-width: 800px;
}

h3.crm-title,
h4.crm-title {
    color: white;
}

.intro {
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.logos {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    color: black;
}

.logowall {}

.logos img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 35px;
}