html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: var(--primary-text-color);
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main.content {
    flex: 1;
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}
.title {
    color: var(--secondary-text-color);
}
header {
    background-color: var(--primary-bg-color);
    padding: 20px 0;
    text-align: center;
    margin-bottom: 10px;
}
header h1 {
    margin: 0;
    font-size: 2em;
}
ul {
    padding-left: 20px;
}
.cta {
    background-color: var(--primary-bg-color);
    color: var(--secondary-text-color);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 10px;
}
.cta-text {
    font-size: 1em;
}
.cta-number {
    font-size: 1.5em;
    font-weight: 600;
}
.cta a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
}
footer {
    background-color: var(--primary-text-color);
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    color: #d4d4d4;
}
.hero img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}
.intro {
    margin-bottom: 50px;
}
.intro h2 {
    font-size: 1.8em;
    line-height: 1.3;
    margin-bottom: 20px;
}
.services {
    margin-bottom: 60px;
}
.services-title {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 30px;
}
.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-text-color);
    border-radius: 6px;
    padding: 14px;
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card .icon {
    margin-bottom: 15px;
    height: 48px;
    width: 48px;
}
.service-card .icon svg {
    height: 100%;
    width: 100%;
    fill: var(--primary-bg-color);
    display: block;
    transition: fill 0.3s ease;
}
.service-card h4 {
    margin-bottom: 10px;
    font-size: 1.3em;
}
.service-card p {
    font-size: 0.95em;
}
.service-card img {
    width: 100%;
    height: 200px; /* фиксированная высота, можно подкорректировать */
    object-fit: cover;
    display: block;
}