@font-face {
    font-family: 'SF UI Text Regular';
    src: url('/public/externalpages/fonts/SFUIText-Regular_g.ttf') format('truetype');
}

@font-face {
    font-family: 'SF UI Text Bold';
    src: url('/public/externalpages/fonts/SFUIText-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'SF UI Text Heavy';
    src: url('/public/externalpages/fonts/SFUIText-Heavy.ttf') format('truetype');
}

@font-face {
    font-family: 'SF UI Text Medium';
    src: url('/public/externalpages/fonts/SFUIText-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'SF UI Text Semi-Bold';
    src: url('/public/externalpages/fonts/SFUIText-Semibold.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF UI Text Regular' !important;
}

.main {
    min-height: 100vh;
    background-color: #eceff1;
}

p {
    color: #424242;
}
.welcome__text {
    background-color: #fff;
    padding: 20px;
    padding-bottom: 100px;
}

.welcome__text h2 {
    font-family: 'SF UI Text Bold';
}

.home-section {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
  
.fitness-logo {
    margin-right: -20px;
}

.description {
    font-size: 0.9rem;
    color: #424242;
}

.coverage {
    background-color: #eceff1;
    padding: 20px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-top: -70px;
}

.coverage h3 {
    font-family: 'SF UI Text Bold';
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    grid-row-gap: 20px;
    padding-bottom: 100px;
}

.grid .card {
    background: #fff;
    border-radius: 20px;
    padding: 0 10px;
    box-shadow: 0px 2px rgba(0,0,0,0.25);
    padding-bottom: 10px;
    min-height: 90px;
}

.card-flex-comp {
    display: flex;
    justify-content: space-between;
}

.card h3 {
    font-size: 1rem;
    margin-bottom:0;
    font-family: 'SF UI Text Heavy';
}

.card p{
    margin: 5px 0;
    font-size: 0.7rem;
    font-family: 'SF UI Text Medium';
}

.card img {
    margin-top: 5px;
}

.cta {
    position: fixed;
    width:100%;
    left:0;
    bottom: 0;
    background-color: #eceff1;
    padding: 15px 0;
}

.btn {
    text-decoration: none;
    display: block;
    width: calc(100% - 40px);
    background: #4daa0b;
    padding: 8px 0px;
    text-align: center;
    border-radius: 10px;
    color: #000;
    font-weight: bold;
    font-family: 'SF UI Text Bold';  
    margin-left: 20px; 
}

.details-main {
    padding: 25px;
    background-color: #eceff1;
}

.introduction-section {
    margin-bottom: 50px;
}

.introduction-section h2 {
    font-family: 'SF UI Text Bold';
}

.introduction-section p {
    font-size: 1.1rem;
    line-height: 1.3;
    color: #424242;
    font-family: 'SF UI Text Regular';
}

.details-section h2 {
    font-family: 'SF UI Text Bold';
}

.details-card {
    background-color: #fff;
    padding: 20px 20px 4px 20px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.details-card p {
    font-family: 'SF UI Text Regular';
    font-size: 0.9rem;
    line-height: 1.3;
}

.details-card-flex {
    display: flex;
}

.details-card-flex h3 {
    margin: 5px 0 0 15px;
    font-family: 'SF UI Text Bold';
}

.footer-section {
    margin: 50px 0;
}

.footer-section p, .footer-section h1 {
    margin: 0;
}

.footer-section p {
    font-size: 1.1rem;
    font-family: 'SF UI Text Semi-Bold';
}

.footer-section h1 {
    font-family: 'SF UI Text Bold';
    font-size: 1.75rem;
}

.back-btn img {
    width: 25px;
    height: 25px;
}