body {
    margin: 0;
    padding: 0;
    font-family: 'bahnschrift';
    background-color: #f9f9f9;
    color: #666;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.detail-header h1 {
    font-size: 1.7rem;
    color: #222;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-standard {
    color: red;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.detail-image img {
    width: 100%;
    height: 60%;
    display: block;
    transition: transform 0.3s ease;
}

.detail-image:hover img {
    transform: scale(1.02);
}

.detail-text h2 {
    font-size: 1.7rem;
    color: black;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.detail-text p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.cta-button {
    display: inline-block;
    background: red;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #b8860b;
}

.cta-button:hover {
    background: transparent;
    color: red;
}

/* Responsive */
@media (max-width: 992px) {
    .detail-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .detail-content {
        grid-template-columns: 1fr;
    }

    .detail-header h1 {
        font-size: 2rem;
    }

    .detail-text h2 {
        font-size: 1.0.5rem;
    }
}

@media (max-width: 480px) {
    .service-detail {
        padding: 2rem 1rem;
    }

    .detail-header h1 {
        font-size: 1.7rem;
    }

    .service-standard {
        font-size: 1rem;
    }
}
 /* Back Button Styles */
        .back-button-container {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 10;
        }
        
        .back-button {
            display: inline-flex;
            align-items: center;
            color: #666;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease;
            padding: 8px 12px;
            border-radius: 4px;
            background-color: rgba(255,255,255,0.8);
        }
        
        .back-button:hover {
            color: red;
            background-color: rgba(255,255,255,0.9);
        }
        
        .back-button i {
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .detail-content {
                grid-template-columns: 1fr;
            }
            
            .back-button-container {
                top: 15px;
                left: 15px;
            }
            
            .back-button {
                font-size: 0.95rem;
                padding: 6px 10px;
            }
        }
        
        /* Add these styles for the floating form */
        .floating-form {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            z-index: 1000;
            width: 90%;
            max-width: 500px;
        }
        
        .form-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .form-group textarea {
            min-height: 120px;
        }
        
        .floating-form button[type="submit"] {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }
        