* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: white;
}

.card {
    padding: 50px 110px;
    width: 100%;
}

.image-container {
    margin-bottom: 24px;
}

.image-container img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.subtitle {
    color: #666;
    margin-bottom: 24px;
}

.phone-number {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.service-title {
    font-size: 20px;
    font-weight: bold;
    margin: 24px 0 8px 0;
}

.service-description {
    color: #666;
    margin-bottom: 24px;
}

.call-button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.call-button:hover {
    background-color: #45a049;
}

.footer-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 32px;
}

@media (max-width: 480px) {
    .card {
        padding: 16px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0px 110px;
    width: 100%;
}

.contact-label {
    font-weight: bold;
    color: #333;
}

.contact-value {
    color: #666;
}

.contact-value a {
    color: #4caf50;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.support-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0px 110px;
    align-items: center;
    margin-top: 40px;
}

.support-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
}

.support-content p {
    line-height: 1.6;
    color: #666;
}

.support-image {
    text-align: right;
}

.support-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .support-section {
        grid-template-columns: 1fr;
    }

    .support-image {
        text-align: center;
        order: -1;
    }
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 0px 110px;
}

.content {
    flex: 1;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.icon {
    width: 40px;
    height: 40px;
    background-color: #ffb800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon.truck {
    background-color: #ffb800;
}

.icon.clock {
    background-color: #ffb800;
}

.feature-content h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
}

.illustration {
    flex: 1;
    max-width: 500px;
}

.illustration img {
    width: 100%;
}

.call-section {
    text-align: center;
    margin-top: 40px;
    padding: 40px 0;
}

.call-section h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.call-section p {
    color: #666;
    margin-bottom: 24px;
}

.call-button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.call-button:hover {
    background-color: #45a049;
}

.price {
    color: #666;
    font-size: 14px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .illustration {
        order: -1;
    }
}