* {
    box-sizing: border-box;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

:root {
    --theme-color: #1baa80;
    --text-color: #585555;
    --button-hover: #12614a;
    --bg-grey: #f7f7f7a1;
    --grey-border: #dfdfdf;
}

.grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-color);
    padding-top: 15px;
}

h2 {
    font-size: 35px;
    text-align: center;
    line-height: 0;
}

.col-2 {
    padding-top: 60px;
}

.button a {
    padding: 12px 40px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    background-color: var(--theme-color);
    font-weight: 500;
    font-size: 17px;
}

.button a:hover {
    background-color: var(--button-hover);
}

.hr-line {
    border: 3px solid var(--theme-color);
    width: 80px;
    margin: 30px auto 0 auto;
}

.p-center {
    text-align: center;
    padding-top: 30px;
}
