.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.service-detail {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}
.service-detail h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}
.detail-image {
    margin: 30px 0;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}
.detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.detail-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
}
.detail-text p {
    margin-bottom: 15px;
}
.service-properties {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    border: 1px solid #e9ecef;
}
.price-block {
    font-size: 1.5rem;
    color: #2a5bd7;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #2a5bd7;
}
.price-block strong {
    color: #666;
    font-weight: 600;
    margin-right: 10px;
}
.icon-block {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #ff6b00;
}
.icon-block strong {
    color: #666;
    font-weight: 600;
    margin-right: 10px;
}
.seo-text {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #dee2e6;
}
.seo-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}
.seo-text h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #333;
}
.features {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #dee2e6;
}
.features h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}
.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
}
.features li:last-child {
    border-bottom: none;
}
.features li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-brands-block {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}
.service-brands-block h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
    text-align: center;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.brand-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}
.brand-card:hover {
    transform: translateY(-5px);
    border-color: #2a5bd7;
    box-shadow: 0 10px 25px rgba(42,91,215,0.15);
}
.brand-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
.brand-name {
    font-weight: 600;
    color: #333;
    text-align: center;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .service-detail-container {
        padding: 20px 15px;
    }

    .service-detail {
        padding: 25px 20px;
    }

    .service-detail h1 {
        font-size: 2rem;
    }

    .service-properties {
        padding: 20px;
    }

    .service-brands-block {
        padding: 25px 20px;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .brand-card {
        padding: 15px;
        height: 80px;
    }

    .brand-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail h1 {
        font-size: 1.8rem;
    }

    .price-block {
        font-size: 1.3rem;
    }
}

.service-detail-grid {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.service-detail-left {
    flex: 1;
    min-width: 280px;
}

.service-detail-right {
    flex: 1.5;
    min-width: 280px;
}

.service-detail-left .service-properties {
    margin-top: 0;
}

@media (max-width: 768px) {
    .service-detail-grid {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail-left,
    .service-detail-right {
        flex: auto;
    }
}


.service-detail-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.service-detail-left {
    flex: 1.5;
    min-width: 280px;
}
.service-detail-right {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.heading h1 {
    margin: 0;
    font-size: 2rem;
}
.price-badge {
    background: #2a5bd7;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.features-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1rem;
}
.features-list li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.description {
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.service-form {
    margin-top: 25px;
}
.hero-form-polytic {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 10px;
    text-align: center;
}
.hero-form-polytic a {
    color: #2a5bd7;
    text-decoration: underline;
}

.service-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .service-detail-grid {
        flex-direction: column;
    }
    .heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .heading h1 {
        font-size: 1.6rem;
    }
    .price-badge {
        align-self: flex-start;
    }
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-header-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.service-header-left {
    flex: 1.5;
    min-width: 280px;
}
.service-header-right {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.heading h1 {
    font-size: 2.2rem;
    margin: 0;
    color: #333;
}
.price-badge {
    background: #2a5bd7;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.features-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1rem;
}
.features-list li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.description {
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.5;
}
.hero-form .cta-form {
    margin-top: 20px;
}
.hero-form-polytic {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 10px;
    text-align: center;
}
.hero-form-polytic a {
    color: #2a5bd7;
    text-decoration: underline;
}
.service-main-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timer {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}
.timer__caption {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}
.timer__caption span {
    font-weight: bold;
    color: #ff6b00;
}
.timer__last {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
}
.timer__timer {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    font-weight: bold;
}
.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}
.timer-number {
    font-size: 2rem;
    font-weight: 700;
    background: white;
    padding: 10px 5px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #2a5bd7;
}
.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #6c757d;
    margin-top: 5px;
}
.timer-sep {
    font-size: 2rem;
    font-weight: bold;
    color: #2a5bd7;
    align-self: center;
}
@media (max-width: 768px) {
    .timer-unit {
        min-width: 50px;
    }
    .timer-number {
        font-size: 1.5rem;
        padding: 5px;
    }
    .timer-label {
        font-size: 0.6rem;
    }
}
.service-benefits, .service-pricing, .online-calculator, .repair-stages {
    margin: 50px 0;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}
.service-benefits h2, .service-pricing h2, .online-calculator h2, .repair-stages h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}
.service-benefits ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.service-benefits li {
    padding: 12px 0 12px 30px;
    position: relative;
}
.service-benefits li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
}

.pricing-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    margin: 30px 0;
}
.pricing-item {
    flex: 1;
    min-width: 150px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.pricing-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2a5bd7;
}
.pricing-label {
    font-size: 1rem;
    color: #6c757d;
}
.pricing-subnote {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    margin-top: 20px;
}
.online-calculator {
    text-align: center;
}
.calc-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b00;
    margin: 20px 0;
}
.calc-discount {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}
.calc-discount span {
    background: #ff6b00;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
}
.calc-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.calc-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 250px;
}
.calc-btn {
    background: #2a5bd7;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}
.repair-stages .stages-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-header-grid {
        flex-direction: column;
    }
    .heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .heading h1 {
        font-size: 1.8rem;
    }
    .pricing-columns {
        flex-direction: column;
        align-items: center;
    }
    .calc-form {
        flex-direction: column;
        align-items: center;
    }
}
