/* Main Content Styling */
.repair-content {
    padding: 2em 0;
}

.repair-content .major h2 {
    color: #2c5d9a;
    font-size: 2.2em;
    margin-bottom: 0.75em;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 0.5em;
}

/* Repair Service Highlights */
.repair-highlights {
    background-color: #f8f9fa;
    padding: 1.5em;
    border-radius: 4px;
    margin: 1.5em 0;
    border-left: 4px solid #3a6ea5;
}

.repair-highlights h3 {
    color: #3a6ea5;
    margin-top: 0;
}

/* Center aligned button container */
.button-container {
    text-align: center;
    margin: 2em 0;
}

/* Repair Button Styles */
.repair-button {
    display: inline-block;
    padding: 0.8em 1.5em;
    background-color: #3a6ea5;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
}

.repair-button:hover {
    background-color: #2c5d9a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.flex-button-container {
    display: flex;
    justify-content: center;
    margin: 2em 0;
}


/* Issue List Styling */
.issue-list {
    columns: 2;
    column-gap: 2em;
    margin: 1.5em 0;
}

.issue-list li {
    padding: 0.5em 0;
    break-inside: avoid;
    position: relative;
    padding-left: 1.75em;
}

.issue-list li:before {
    content: "•";
    color: #3a6ea5;
    font-weight: bold;
    position: absolute;
    left: 0.5em;
}

/* Shipping Policy Box */
.shipping-policy {
    background-color: #fff9f2;
    border: 1px solid #ffe8cc;
    padding: 1.5em;
    border-radius: 4px;
    margin: 2em 0;
}

.shipping-policy h3 {
    color: #d35400;
    margin-top: 0;
}

/* Responsive Adjustments */
@media screen and (max-width: 736px) {
    .issue-list {
        columns: 1;
    }
    
    .repair-images .row > div {
        margin-bottom: 1em;
    }
    
    .repair-content .major h2 {
        font-size: 1.8em;
    }
}

/* Price Emphasis */
.repair-price {
    font-size: 1.2em;
    color: #27ae60;
    font-weight: bold;
    margin: 1em 0;
}

/* Form Link Styling */
.form-link {
    display: inline-block;
    margin: 1em 0;
    padding: 0.6em 1em;
    background-color: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-link:hover {
    background-color: #e9ecef;
    border-color: #dae0e5;
}

/* Image Size Control */


/* Responsive Image Adjustments */
@media screen and (max-width: 736px) {
    .repair-image {
        max-height: 100px;
    }
}

/* Maintain aspect ratio for images */
.image.fit {
    height: auto;
    max-width: 100%;
}
/* Repair Images Layout */
.repair-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 2em 0;
}

.repair-images > div {
    flex: 1 1 45%; /* Two columns with gap */
}

.repair-image {
    max-height: 150px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.repair-image:hover {
    transform: scale(1.02);
}

/* Mobile Responsiveness */
.repair-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 2em auto;
}

.repair-images > div {
    flex: 1 1 calc(50% - 10px);
}

@media screen and (max-width: 736px) {
    .repair-images > div {
        flex: 1 1 100%;
    }
}