body {
    margin: 0;
    font-family: 'Wix Madefor Display', sans-serif;
    background-color: #ffffff;
    color: #212529;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.services {
    padding: 30px 0;
}

.page-title-wrapper {
    margin-bottom: 50px;
}

.page-title-1,
.page-title-2 {
    font-weight: 800;
    font-size: 100px;
    line-height: 1.1;
    letter-spacing: 0;
    margin: 0;
}

.page-title-1 {
    color: #000000;
}

.page-title-2 {
    color: #0475d2;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
    flex-basis: calc((100% - 90px) / 4);
    min-width: 240px;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-image: linear-gradient(to bottom, #ffffff 95%, #0475d2 0%);
    background-size: 100% 103%;
    background-position: center bottom; 
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    cursor: pointer;
}

.service-card__image-wrapper {
    margin: 0 auto 25px auto;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__image {
    max-height: 100%;
}

.service-card__title-1,
.service-card__title-2 {
    font-weight: 800;
    font-size: 21px;
    line-height: 1.2;
    margin: 0;
}

.service-card__title-1 {
    color: #000000;
}

.service-card__title-2 {
    color: #0475d2;
}

.section-title-1,
.section-title-2 {
    font-weight: 800;
    font-size: 100px;
    line-height: 1;
}

.section-title-1 {
    color: #000000;
}

.section-title-2 {
    color: #0475d2;
}

.section-title-1::after {
    content: "»";
    color: #0475d2;
    margin-left: 20px;
}

.service-card__dots {
    padding-top: 10px;
}

.pricing {
    padding: 80px 0;
    text-align: center;
}

.pricing .container {
    max-width: 1300px;
}

.pricing p {
    padding-top: 25px;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 20px 0;

}

.pricing__connect {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: #212529;
    margin: 0 auto; 
    max-width: 1400px;
}

.pricing__highlight {
     color: #0475d2;
     font-weight: 600;
     font-size: 20px !important;
}

.btn {
    display: inline-block;
    background-color: #0475d2;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px; 
    transition: background-color 0.2s;
}


.btn:hover {
    background-color: #035a9e;
}

.contacts {
    text-align: center;
}

.contacts .container {
    max-width: 1200px;
}

.contacts p {
    font-size: 20px;
    margin: 20px;
}

.contacts__phone,
.contacts__email {
    font-family: Wix Madefor Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contacts__phone:hover,
.contacts__email:hover {
    color: #0475d2;
}

.contacts_address {
    margin-top: 20px !important;
    font-size: 18px !important;
    color: #6c757d;
}

.contacts__socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.contacts__socials a img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

